{"id":928,"date":"2011-06-15T07:29:52","date_gmt":"2011-06-15T12:29:52","guid":{"rendered":"http:\/\/www.migrate2cloud.com\/blog\/?p=928"},"modified":"2016-03-21T02:49:41","modified_gmt":"2016-03-21T07:49:41","slug":"achieving-hipaa-on-aws-ec2-with-windows-server-2008","status":"publish","type":"post","link":"https:\/\/www.migrate2cloud.com\/blog\/achieving-hipaa-on-aws-ec2-with-windows-server-2008\/","title":{"rendered":"Achieving HIPAA  on  AWS \/ EC2  with  Windows Server 2008"},"content":{"rendered":"<p>When you are creating a HIPAA compliant system on cloud service like AWS \/ EC2 \/ S3, you have to carefully examine the different levels of data security provided by the Cloud Service provider<\/p>\n<p>At a minimum level, the following should be ascertained:<\/p>\n<p>i) Where is the Cloud provider\u2019s data center physically located. In some countries, HIPAA restricts Protected Health Information ( PHI ) to be stored on servers located outside of the country.<\/p>\n<p>ii) Whether the cloud provider contractually obligated to protect the customer\u2019s data at the same level as the customer\u2019s own internal policies?<\/p>\n<p>iii) Cloud provider&#8217;s Backup and Recovery policies<\/p>\n<p>iv) What are the provider\u2019s policies on data handling\/management and access control? Do adequate controls exist to prevent impermissible copying or removal of customer data by the provider, or by unauthorized employees of the company?<\/p>\n<p>v) What happens to data when it is deleted? This is very important as customers will be storing data on virtual Machines. Also What happens to cloud hardware when the hardware is replaced?<\/p>\n<p>In this blog we are only looking at the different security levels to be taken by the application developer to make sure that a web application built on AWS \/ EC2 using Windows Server 2008 \/ .NET \/ MSSQL \/ IIS 7 \/ is HIPAA compliant. The basic requirement is to encrypt all the data at rest and transit<\/p>\n<p><strong>1. Encrypting Data in transit between the user ( clients ) and the server ( Webserver ) <\/strong><br \/>\n<strong><br \/>\nSSL over HTTP ( HTTPS ) <\/strong><\/p>\n<p>Steps used to Implement SSL on IIS are the following:<\/p>\n<p>[bash]<br \/>\n1.Open IIS Manager.<br \/>\n2.Click on the server name.<br \/>\n3.Double-click the &#8220;Server Certificates&#8221; button in the &#8220;Security&#8221; section<br \/>\n4.Click on self-signed certificate<br \/>\n5.Enter certificate name and click ok<br \/>\n6. Select the name of the server to which the certificate was installed.<\/p>\n<p>7. From the &#8220;Actions&#8221; menu (on the right), click on &#8220;Bindings.&#8221; This will open the &#8220;Site Bindings&#8221; window<\/p>\n<p>8. In the &#8220;Site Bindings&#8221; window, click &#8220;Add&#8221; This will open the &#8220;Add Site Binding&#8221; window<\/p>\n<p>9. Under &#8220;Type&#8221; choose https. The IP address should be the IP address of the site , and the port over which traffic will be secured by SSL is usually 443. The &#8220;SSL Certificate&#8221; field should specify the certificate that was installed in step 5.<\/p>\n<p>10.Click &#8220;OK.&#8221; . SSL is now installed .<br \/>\n[\/bash]<\/p>\n<p><strong>2 ) Encrypting Data at Rest ( Document Root )<\/strong><\/p>\n<p><strong>EFS with IIS <\/strong><\/p>\n<p>You can use EFS ( Encrypted File System ) in Windows 2008 Server to automatically encrypt your data when it is stored on the hard disk.<\/p>\n<p>Encrypt a Folder:<\/p>\n<p>[bash]<br \/>\n1. Open Windows Explorer.<br \/>\n2. Right-click the folder that you want to encrypt , and then click Properties.<br \/>\n3. On the General tab, click Advanced.<br \/>\n4. Under Compress or Encrypt attributes, select the Encrypt contents to secure data check box and then click OK.<br \/>\n5. Click OK.<br \/>\n6. In the Confirm Attribute Changes dialog box that appears, use one of the following steps:<br \/>\ni) If you want to encrypt only the folder, click Apply changes to this folder only, and then click OK.<br \/>\nii) If you want to encrypt the existing folder contents along with the folder, click Apply changes to this folder, subfolders and files, and then click OK.<br \/>\n[\/bash]<\/p>\n<p>The folder becomes an encrypted folder. New files that you create in this folder are automatically encrypted<\/p>\n<p><strong><br \/>\n3 ) Encrypting MSSQL Database ( Data at Rest ) <\/strong><\/p>\n<p><strong>TDE ( Transparent Data Encryption ) <\/strong><\/p>\n<p>TDE is a new feature inbuilt in MSSQL Server 2008 Enterprise Edition . Data is encrypted before it is written to disk; data is decrypted when it is read from disk. The &#8220;transparent&#8221; aspect of TDE is that the encryption is performed by the database engine and SQL Server clients are completely unaware of it. There is absolutely no code that needs to be written to perform the encryption and decryption .So there is no need for changing any code ( Database Queries ) in the Application .<\/p>\n<p>STEPS<\/p>\n<p>i) Create a Master Key<\/p>\n<p>A master key is a symmetric key that is used to create certificates and asymmetric keys. Execute the following script to create a master key:<\/p>\n<p>[bash]<br \/>\nUSE master;<br \/>\nCREATE MASTER KEY<br \/>\nENCRYPTION BY PASSWORD = &#8216;Pass@word1&#8217;;<br \/>\nGO<br \/>\n[\/bash]<\/p>\n<p>ii)Create Certificate<\/p>\n<p>Certificates can be used to create symmetric keys for data encryption or to encrypt the data directly. Execute the following script to create a certificate:<\/p>\n<p>[bash]<br \/>\nCREATE CERTIFICATE TDECert<br \/>\nWITH SUBJECT = &#8216;TDE Certificate&#8217;<br \/>\nGO<br \/>\n[\/bash]<\/p>\n<p>iii) Create a Database Encryption Key and Protect it by the Certificate<\/p>\n<p>[bash]<br \/>\n1.Go to object explorer in the left pane of the MSSQL SERVER Management Studio<br \/>\n2.Right Click on the database on which TDE Requires<br \/>\n3.Click Tasks and Navigate to Manage Database Encryption<br \/>\n4. Select the encrytion algorithm (AES 128\/192\/256) and select the certificate you have created<br \/>\n5.Then Mark the check Box for Set Database Encryption On<br \/>\n[\/bash]<\/p>\n<p>You can query the is_encrypted column in sys.databases to determine whether TDE is enabled for a particular database.<\/p>\n<p>[bash]<br \/>\nSELECT [name], is_encrypted FROM sys.databases<br \/>\nGO<br \/>\n[\/bash]<\/p>\n<p><strong><br \/>\n4 ) Encrypting Data in transit between the Webserver and the MSSQL Database<\/strong><\/p>\n<p>MSSQL secure connection using SSL<\/p>\n<p>i) Creating a self-singned cert using makecert<br \/>\n[bash]<br \/>\nmakecert -r -pe -n &#8220;CN=YOUR_SERVER_FQDN&#8221; -b 01\/01\/2000 -e 01\/01\/2036 -eku 1.3.6.1.5.5.7.3.1 -ss my -sr localMachine -sky exchange -sp &#8220;Microsoft RSA SChannel Cryptographic Provider&#8221; -sy 12 c:\\test.cer<br \/>\n[\/bash]<\/p>\n<p>ii) Install this cert<\/p>\n<p>[bash]<br \/>\nCopy c:\\test.cer into your client machine, run c:\\test.cer from command window, select &#8220;Install Certificate&#8221;. -&amp;gt; click &#8220;Next&#8221; -&amp;gt; select &#8220;Place all certificates in the following store&#8221; &#8211;&amp;gt; click &#8220;Browser&#8221; -&amp;gt; select &#8220;Trusted Root Certification Authorities&#8221; -&amp;gt; select OK and Finish<br \/>\n[\/bash]<\/p>\n<p>iii) Open SQL Server Configuration Manager<\/p>\n<p>[bash]<br \/>\nExpand SQL Server Network Configuration, right-click &#8220;Protocols for MSSQLSERVER&#8221; then click &#8220;properties&#8221;. On the &#8220;Certificate&#8221; tab select the certificate just installed . On the &#8220;Flags&#8221; tab, set &#8220;ForceEncryption&#8221; YES.<br \/>\n[\/bash]<\/p>\n<p>Now SSL is ready to be used on the server. The only modification needed in the .NET code is connection string. It will be<\/p>\n<p>[bash]<br \/>\nconnectionString=&#8221;Data Source=localhost;Initial Catalog=mydb;User ID=user1;Password=pas@123;Encrypt=true;TrustServerCertificate=true&#8221;<br \/>\n[\/bash]<\/p>\n","protected":false},"excerpt":{"rendered":"<p>When you are creating a HIPAA compliant system on cloud service like AWS \/ EC2 \/ S3, you have to carefully examine the different levels of data security provided by the Cloud Service provider At a minimum level, the following should be ascertained: i) Where is the Cloud provider\u2019s data center physically located. In some [&hellip;]<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_jetpack_newsletter_access":"","_jetpack_dont_email_post_to_subs":false,"_jetpack_newsletter_tier_id":0,"_jetpack_memberships_contains_paywalled_content":false,"_jetpack_feature_clip_id":0,"_jetpack_memberships_contains_paid_content":false,"footnotes":"","jetpack_post_was_ever_published":false},"categories":[52,34,50,51,3],"tags":[83,4,129,471,20,478,127,215,480,481,476,470,472,465,466,473,468,464,84,116,82,467,463,474,81,482,477,85,18,479,300,77,136,469,241,79,475,80],"class_list":["post-928","post","type-post","status-publish","format-standard","hentry","category-amazon-ebs","category-amazon-ec2","category-amazon-s3","category-amazon-web-services","category-cloud-computing","tag-net","tag-amazon","tag-amazon-ec2","tag-application-developer","tag-aws","tag-city-click","tag-cloud-computing","tag-cloud-infrastructure","tag-cloud-service","tag-company-aes-corp","tag-company-microsoft","tag-data-encryption","tag-database-encryption","tag-electric-utilities-nec","tag-encryption","tag-encrytion-algorithm","tag-general","tag-health-insurance-portability-and-accountability-act","tag-hipaa","tag-http","tag-iis-7","tag-iis-manager","tag-internet-information-services","tag-key-encryption","tag-mssql","tag-mssql-server-management-studio","tag-open-sql-server-configuration-manager","tag-pci","tag-s3","tag-set-database-encryption","tag-software-nec","tag-ssl","tag-technologyinternet","tag-transparent-data-encryption","tag-web-application","tag-windows","tag-windows-2008","tag-windows-server-2008"],"aioseo_notices":[],"aioseo_head":"\n\t\t<!-- All in One SEO 4.9.10 - aioseo.com -->\n\t<meta name=\"description\" content=\"When you are creating a HIPAA compliant system on cloud service like AWS \/ EC2 \/ S3, you have to carefully examine the different levels of data security provided by the Cloud Service provider At a minimum level, the following should be ascertained: i) Where is the Cloud provider\u2019s data center physically located. In some\" \/>\n\t<meta name=\"robots\" content=\"max-image-preview:large\" \/>\n\t<meta name=\"author\" content=\"DevOps Team\"\/>\n\t<link rel=\"canonical\" href=\"https:\/\/www.migrate2cloud.com\/blog\/achieving-hipaa-on-aws-ec2-with-windows-server-2008\/\" \/>\n\t<meta name=\"generator\" content=\"All in One SEO (AIOSEO) 4.9.10\" \/>\n\t\t<meta property=\"og:locale\" content=\"en_US\" \/>\n\t\t<meta property=\"og:site_name\" content=\"Migrate to Cloud - we make the clouds rain\" \/>\n\t\t<meta property=\"og:type\" content=\"article\" \/>\n\t\t<meta property=\"og:title\" content=\"Achieving HIPAA on AWS \/ EC2 with Windows Server 2008 - Migrate to Cloud\" \/>\n\t\t<meta property=\"og:description\" content=\"When you are creating a HIPAA compliant system on cloud service like AWS \/ EC2 \/ S3, you have to carefully examine the different levels of data security provided by the Cloud Service provider At a minimum level, the following should be ascertained: i) Where is the Cloud provider\u2019s data center physically located. In some\" \/>\n\t\t<meta property=\"og:url\" content=\"https:\/\/www.migrate2cloud.com\/blog\/achieving-hipaa-on-aws-ec2-with-windows-server-2008\/\" \/>\n\t\t<meta property=\"article:published_time\" content=\"2011-06-15T12:29:52+00:00\" \/>\n\t\t<meta property=\"article:modified_time\" content=\"2016-03-21T07:49:41+00:00\" \/>\n\t\t<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n\t\t<meta name=\"twitter:title\" content=\"Achieving HIPAA on AWS \/ EC2 with Windows Server 2008 - Migrate to Cloud\" \/>\n\t\t<meta name=\"twitter:description\" content=\"When you are creating a HIPAA compliant system on cloud service like AWS \/ EC2 \/ S3, you have to carefully examine the different levels of data security provided by the Cloud Service provider At a minimum level, the following should be ascertained: i) Where is the Cloud provider\u2019s data center physically located. In some\" \/>\n\t\t<script type=\"application\/ld+json\" class=\"aioseo-schema\">\n\t\t\t{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"BlogPosting\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/achieving-hipaa-on-aws-ec2-with-windows-server-2008\\\/#blogposting\",\"name\":\"Achieving HIPAA on AWS \\\/ EC2 with Windows Server 2008 - Migrate to Cloud\",\"headline\":\"Achieving HIPAA  on  AWS \\\/ EC2  with  Windows Server 2008\",\"author\":{\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/author\\\/admin\\\/#author\"},\"publisher\":{\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/#organization\"},\"datePublished\":\"2011-06-15T07:29:52-05:00\",\"dateModified\":\"2016-03-21T02:49:41-05:00\",\"inLanguage\":\"en-US\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/achieving-hipaa-on-aws-ec2-with-windows-server-2008\\\/#webpage\"},\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/achieving-hipaa-on-aws-ec2-with-windows-server-2008\\\/#webpage\"},\"articleSection\":\"Amazon EBS, Amazon EC2, Amazon S3, Amazon Web Services, Cloud computing, .NET, amazon, Amazon EC2, application developer, aws, City: Click, Cloud computing, Cloud infrastructure, Cloud Service, Company: AES Corp, Company: Microsoft, data encryption, Database Encryption, Electric Utilities - NEC, encryption, encrytion algorithm, General, Health Insurance Portability and Accountability Act, HIPAA, HTTP, IIS 7, IIS Manager, Internet Information Services, KEY ENCRYPTION, MSSQL, MSSQL SERVER Management Studio, Open SQL Server Configuration Manager, PCI, S3, Set Database Encryption, Software - NEC, SSL, Technology\\\/Internet, Transparent Data Encryption, web application, windows, Windows 2008, windows server 2008\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/achieving-hipaa-on-aws-ec2-with-windows-server-2008\\\/#breadcrumblist\",\"itemListElement\":[{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog#listItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/category\\\/cloud-computing\\\/#listItem\",\"name\":\"Cloud computing\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/category\\\/cloud-computing\\\/#listItem\",\"position\":2,\"name\":\"Cloud computing\",\"item\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/category\\\/cloud-computing\\\/\",\"nextItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/achieving-hipaa-on-aws-ec2-with-windows-server-2008\\\/#listItem\",\"name\":\"Achieving HIPAA  on  AWS \\\/ EC2  with  Windows Server 2008\"},\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog#listItem\",\"name\":\"Home\"}},{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/achieving-hipaa-on-aws-ec2-with-windows-server-2008\\\/#listItem\",\"position\":3,\"name\":\"Achieving HIPAA  on  AWS \\\/ EC2  with  Windows Server 2008\",\"previousItem\":{\"@type\":\"ListItem\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/category\\\/cloud-computing\\\/#listItem\",\"name\":\"Cloud computing\"}}]},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/#organization\",\"name\":\"Migrate to Cloud\",\"description\":\"we make the clouds rain\",\"url\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/\"},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/author\\\/admin\\\/#author\",\"url\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/author\\\/admin\\\/\",\"name\":\"DevOps Team\",\"image\":{\"@type\":\"ImageObject\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/achieving-hipaa-on-aws-ec2-with-windows-server-2008\\\/#authorImage\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/20b51e018d8f61e1739f60911fcf45cc9d09284569e448583a87f7fd0ac3d9dc?s=96&d=mm&r=g\",\"width\":96,\"height\":96,\"caption\":\"DevOps Team\"}},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/achieving-hipaa-on-aws-ec2-with-windows-server-2008\\\/#webpage\",\"url\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/achieving-hipaa-on-aws-ec2-with-windows-server-2008\\\/\",\"name\":\"Achieving HIPAA on AWS \\\/ EC2 with Windows Server 2008 - Migrate to Cloud\",\"description\":\"When you are creating a HIPAA compliant system on cloud service like AWS \\\/ EC2 \\\/ S3, you have to carefully examine the different levels of data security provided by the Cloud Service provider At a minimum level, the following should be ascertained: i) Where is the Cloud provider\\u2019s data center physically located. In some\",\"inLanguage\":\"en-US\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/#website\"},\"breadcrumb\":{\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/achieving-hipaa-on-aws-ec2-with-windows-server-2008\\\/#breadcrumblist\"},\"author\":{\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/author\\\/admin\\\/#author\"},\"creator\":{\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/author\\\/admin\\\/#author\"},\"datePublished\":\"2011-06-15T07:29:52-05:00\",\"dateModified\":\"2016-03-21T02:49:41-05:00\"},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/#website\",\"url\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/\",\"name\":\"Migrate to Cloud\",\"description\":\"we make the clouds rain\",\"inLanguage\":\"en-US\",\"publisher\":{\"@id\":\"https:\\\/\\\/www.migrate2cloud.com\\\/blog\\\/#organization\"}}]}\n\t\t<\/script>\n\t\t<!-- All in One SEO -->\n\n","aioseo_head_json":{"title":"Achieving HIPAA on AWS \/ EC2 with Windows Server 2008 - Migrate to Cloud","description":"When you are creating a HIPAA compliant system on cloud service like AWS \/ EC2 \/ S3, you have to carefully examine the different levels of data security provided by the Cloud Service provider At a minimum level, the following should be ascertained: i) Where is the Cloud provider\u2019s data center physically located. In some","canonical_url":"https:\/\/www.migrate2cloud.com\/blog\/achieving-hipaa-on-aws-ec2-with-windows-server-2008\/","robots":"max-image-preview:large","keywords":"","webmasterTools":{"miscellaneous":""},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"BlogPosting","@id":"https:\/\/www.migrate2cloud.com\/blog\/achieving-hipaa-on-aws-ec2-with-windows-server-2008\/#blogposting","name":"Achieving HIPAA on AWS \/ EC2 with Windows Server 2008 - Migrate to Cloud","headline":"Achieving HIPAA  on  AWS \/ EC2  with  Windows Server 2008","author":{"@id":"https:\/\/www.migrate2cloud.com\/blog\/author\/admin\/#author"},"publisher":{"@id":"https:\/\/www.migrate2cloud.com\/blog\/#organization"},"datePublished":"2011-06-15T07:29:52-05:00","dateModified":"2016-03-21T02:49:41-05:00","inLanguage":"en-US","mainEntityOfPage":{"@id":"https:\/\/www.migrate2cloud.com\/blog\/achieving-hipaa-on-aws-ec2-with-windows-server-2008\/#webpage"},"isPartOf":{"@id":"https:\/\/www.migrate2cloud.com\/blog\/achieving-hipaa-on-aws-ec2-with-windows-server-2008\/#webpage"},"articleSection":"Amazon EBS, Amazon EC2, Amazon S3, Amazon Web Services, Cloud computing, .NET, amazon, Amazon EC2, application developer, aws, City: Click, Cloud computing, Cloud infrastructure, Cloud Service, Company: AES Corp, Company: Microsoft, data encryption, Database Encryption, Electric Utilities - NEC, encryption, encrytion algorithm, General, Health Insurance Portability and Accountability Act, HIPAA, HTTP, IIS 7, IIS Manager, Internet Information Services, KEY ENCRYPTION, MSSQL, MSSQL SERVER Management Studio, Open SQL Server Configuration Manager, PCI, S3, Set Database Encryption, Software - NEC, SSL, Technology\/Internet, Transparent Data Encryption, web application, windows, Windows 2008, windows server 2008"},{"@type":"BreadcrumbList","@id":"https:\/\/www.migrate2cloud.com\/blog\/achieving-hipaa-on-aws-ec2-with-windows-server-2008\/#breadcrumblist","itemListElement":[{"@type":"ListItem","@id":"https:\/\/www.migrate2cloud.com\/blog#listItem","position":1,"name":"Home","item":"https:\/\/www.migrate2cloud.com\/blog","nextItem":{"@type":"ListItem","@id":"https:\/\/www.migrate2cloud.com\/blog\/category\/cloud-computing\/#listItem","name":"Cloud computing"}},{"@type":"ListItem","@id":"https:\/\/www.migrate2cloud.com\/blog\/category\/cloud-computing\/#listItem","position":2,"name":"Cloud computing","item":"https:\/\/www.migrate2cloud.com\/blog\/category\/cloud-computing\/","nextItem":{"@type":"ListItem","@id":"https:\/\/www.migrate2cloud.com\/blog\/achieving-hipaa-on-aws-ec2-with-windows-server-2008\/#listItem","name":"Achieving HIPAA  on  AWS \/ EC2  with  Windows Server 2008"},"previousItem":{"@type":"ListItem","@id":"https:\/\/www.migrate2cloud.com\/blog#listItem","name":"Home"}},{"@type":"ListItem","@id":"https:\/\/www.migrate2cloud.com\/blog\/achieving-hipaa-on-aws-ec2-with-windows-server-2008\/#listItem","position":3,"name":"Achieving HIPAA  on  AWS \/ EC2  with  Windows Server 2008","previousItem":{"@type":"ListItem","@id":"https:\/\/www.migrate2cloud.com\/blog\/category\/cloud-computing\/#listItem","name":"Cloud computing"}}]},{"@type":"Organization","@id":"https:\/\/www.migrate2cloud.com\/blog\/#organization","name":"Migrate to Cloud","description":"we make the clouds rain","url":"https:\/\/www.migrate2cloud.com\/blog\/"},{"@type":"Person","@id":"https:\/\/www.migrate2cloud.com\/blog\/author\/admin\/#author","url":"https:\/\/www.migrate2cloud.com\/blog\/author\/admin\/","name":"DevOps Team","image":{"@type":"ImageObject","@id":"https:\/\/www.migrate2cloud.com\/blog\/achieving-hipaa-on-aws-ec2-with-windows-server-2008\/#authorImage","url":"https:\/\/secure.gravatar.com\/avatar\/20b51e018d8f61e1739f60911fcf45cc9d09284569e448583a87f7fd0ac3d9dc?s=96&d=mm&r=g","width":96,"height":96,"caption":"DevOps Team"}},{"@type":"WebPage","@id":"https:\/\/www.migrate2cloud.com\/blog\/achieving-hipaa-on-aws-ec2-with-windows-server-2008\/#webpage","url":"https:\/\/www.migrate2cloud.com\/blog\/achieving-hipaa-on-aws-ec2-with-windows-server-2008\/","name":"Achieving HIPAA on AWS \/ EC2 with Windows Server 2008 - Migrate to Cloud","description":"When you are creating a HIPAA compliant system on cloud service like AWS \/ EC2 \/ S3, you have to carefully examine the different levels of data security provided by the Cloud Service provider At a minimum level, the following should be ascertained: i) Where is the Cloud provider\u2019s data center physically located. In some","inLanguage":"en-US","isPartOf":{"@id":"https:\/\/www.migrate2cloud.com\/blog\/#website"},"breadcrumb":{"@id":"https:\/\/www.migrate2cloud.com\/blog\/achieving-hipaa-on-aws-ec2-with-windows-server-2008\/#breadcrumblist"},"author":{"@id":"https:\/\/www.migrate2cloud.com\/blog\/author\/admin\/#author"},"creator":{"@id":"https:\/\/www.migrate2cloud.com\/blog\/author\/admin\/#author"},"datePublished":"2011-06-15T07:29:52-05:00","dateModified":"2016-03-21T02:49:41-05:00"},{"@type":"WebSite","@id":"https:\/\/www.migrate2cloud.com\/blog\/#website","url":"https:\/\/www.migrate2cloud.com\/blog\/","name":"Migrate to Cloud","description":"we make the clouds rain","inLanguage":"en-US","publisher":{"@id":"https:\/\/www.migrate2cloud.com\/blog\/#organization"}}]},"og:locale":"en_US","og:site_name":"Migrate to Cloud - we make the clouds rain","og:type":"article","og:title":"Achieving HIPAA on AWS \/ EC2 with Windows Server 2008 - Migrate to Cloud","og:description":"When you are creating a HIPAA compliant system on cloud service like AWS \/ EC2 \/ S3, you have to carefully examine the different levels of data security provided by the Cloud Service provider At a minimum level, the following should be ascertained: i) Where is the Cloud provider\u2019s data center physically located. In some","og:url":"https:\/\/www.migrate2cloud.com\/blog\/achieving-hipaa-on-aws-ec2-with-windows-server-2008\/","article:published_time":"2011-06-15T12:29:52+00:00","article:modified_time":"2016-03-21T07:49:41+00:00","twitter:card":"summary_large_image","twitter:title":"Achieving HIPAA on AWS \/ EC2 with Windows Server 2008 - Migrate to Cloud","twitter:description":"When you are creating a HIPAA compliant system on cloud service like AWS \/ EC2 \/ S3, you have to carefully examine the different levels of data security provided by the Cloud Service provider At a minimum level, the following should be ascertained: i) Where is the Cloud provider\u2019s data center physically located. In some"},"aioseo_meta_data":{"post_id":"928","title":null,"description":null,"keywords":null,"keyphrases":null,"primary_term":null,"canonical_url":null,"og_title":null,"og_description":null,"og_object_type":"default","og_image_type":"default","og_image_url":null,"og_image_width":null,"og_image_height":null,"og_image_custom_url":null,"og_image_custom_fields":null,"og_video":null,"og_custom_url":null,"og_article_section":null,"og_article_tags":null,"twitter_use_og":false,"twitter_card":"default","twitter_image_type":"default","twitter_image_url":null,"twitter_image_custom_url":null,"twitter_image_custom_fields":null,"twitter_title":null,"twitter_description":null,"schema":{"blockGraphs":[],"customGraphs":[],"default":{"data":{"Article":[],"Course":[],"Dataset":[],"FAQPage":[],"Movie":[],"Person":[],"Product":[],"ProductReview":[],"Car":[],"Recipe":[],"Service":[],"SoftwareApplication":[],"WebPage":[]},"graphName":"","isEnabled":true},"graphs":[]},"schema_type":"default","schema_type_options":null,"pillar_content":false,"robots_default":true,"robots_noindex":false,"robots_noarchive":false,"robots_nosnippet":false,"robots_nofollow":false,"robots_noimageindex":false,"robots_noodp":false,"robots_notranslate":false,"robots_max_snippet":null,"robots_max_videopreview":null,"robots_max_imagepreview":"large","priority":null,"frequency":null,"local_seo":null,"limit_modified_date":false,"created":"2022-12-27 09:16:42","updated":"2026-07-21 15:28:32","ai":null,"breadcrumb_settings":null,"seo_analyzer_scan_date":null},"aioseo_breadcrumb":"<div class=\"aioseo-breadcrumbs\"><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.migrate2cloud.com\/blog\" title=\"Home\">Home<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\t<a href=\"https:\/\/www.migrate2cloud.com\/blog\/category\/cloud-computing\/\" title=\"Cloud computing\">Cloud computing<\/a>\n\t\t<\/span><span class=\"aioseo-breadcrumb-separator\">&raquo;<\/span><span class=\"aioseo-breadcrumb\">\n\t\t\tAchieving HIPAA  on  AWS \/ EC2  with  Windows Server 2008\n\t\t<\/span><\/div>","aioseo_breadcrumb_json":[{"label":"Home","link":"https:\/\/www.migrate2cloud.com\/blog"},{"label":"Cloud computing","link":"https:\/\/www.migrate2cloud.com\/blog\/category\/cloud-computing\/"},{"label":"Achieving HIPAA  on  AWS \/ EC2  with  Windows Server 2008","link":"https:\/\/www.migrate2cloud.com\/blog\/achieving-hipaa-on-aws-ec2-with-windows-server-2008\/"}],"jetpack_featured_media_url":"","jetpack-related-posts":[],"jetpack_sharing_enabled":true,"amp_enabled":true,"_links":{"self":[{"href":"https:\/\/www.migrate2cloud.com\/blog\/wp-json\/wp\/v2\/posts\/928","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.migrate2cloud.com\/blog\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.migrate2cloud.com\/blog\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.migrate2cloud.com\/blog\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.migrate2cloud.com\/blog\/wp-json\/wp\/v2\/comments?post=928"}],"version-history":[{"count":12,"href":"https:\/\/www.migrate2cloud.com\/blog\/wp-json\/wp\/v2\/posts\/928\/revisions"}],"predecessor-version":[{"id":2153,"href":"https:\/\/www.migrate2cloud.com\/blog\/wp-json\/wp\/v2\/posts\/928\/revisions\/2153"}],"wp:attachment":[{"href":"https:\/\/www.migrate2cloud.com\/blog\/wp-json\/wp\/v2\/media?parent=928"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.migrate2cloud.com\/blog\/wp-json\/wp\/v2\/categories?post=928"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.migrate2cloud.com\/blog\/wp-json\/wp\/v2\/tags?post=928"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}