{"id":596,"date":"2018-09-16T16:39:20","date_gmt":"2018-09-16T16:39:20","guid":{"rendered":"http:\/\/www.ciraltos.com\/?p=596"},"modified":"2023-03-24T00:04:40","modified_gmt":"2023-03-24T05:04:40","slug":"azure-disk-encryption-v2","status":"publish","type":"post","link":"https:\/\/www.ciraltos.com\/staging2\/azure-disk-encryption-v2\/","title":{"rendered":"Azure Disk Encryption, V2"},"content":{"rendered":"<p><img decoding=\"async\" loading=\"lazy\" class=\"size-thumbnail wp-image-260 alignleft\" src=\"\/wp-content\/uploads\/2017\/10\/DiskEncryption-150x150.png\" alt=\"Disk Encryption\" width=\"150\" height=\"150\" srcset=\"https:\/\/www.ciraltos.com\/staging2\/wp-content\/uploads\/2017\/10\/DiskEncryption-150x150.png 150w, https:\/\/www.ciraltos.com\/staging2\/wp-content\/uploads\/2017\/10\/DiskEncryption.png 249w\" sizes=\"(max-width: 150px) 100vw, 150px\" \/>The only constant is change. &nbsp;I noticed some new information came out this month while working on a project that requires encrypting disks. &nbsp;This information significantly changes how Azure Disk Encryption can be applied to Windows and Linux VM\u2019s.&nbsp; This is an update to my previous article on Azure Disk Encryption with the intention of outlining the new, easier method of encrypting Azure disks.<!--more--><\/p>\n<h2>Before we Encrypt<\/h2>\n<p>You will need a Key Vault to start with.&nbsp; The Key Vault has to be in the same region as the VM that will be encrypted. &nbsp;My recommendation is to use the Azure Premium Key Vault with Hardware Security Modules (HSM) backed keys. &nbsp;It\u2019s like, $1 US, so it won\u2019t break the bank and gives you a couple more features such as advanced key types. &nbsp;Details on how to setup the Key Vault can be found under \u201cThe Key Vault\u201d of this <a href=\"http:\/\/www.ciraltos.com\/azure-disk-encryption\/\" target=\"_blank\" rel=\"noopener\">post<\/a>.<\/p>\n<p>While I\u2019m on the subject, also consider enabling soft delete on the Key Vault. &nbsp;This provides a safeguard from accidental or malicious key deleted.&nbsp; By enabling soft-delete, you can recover deleted keys up to 90 days after they are deleted. &nbsp;Full details <a href=\"https:\/\/docs.microsoft.com\/en-us\/azure\/key-vault\/key-vault-soft-delete-powershell\" target=\"_blank\" rel=\"noopener\">here<\/a>. &nbsp;Below are some basic settings from the mentioned article<\/p>\n<p>To view if soft-delete is enabled log into Azure and use the command below. &nbsp;Soft delete is enabled if it returns True.<\/p>\n<pre>$vault = Get-AzureRmKeyVault -VaultName myvault; $vault.EnableSoftDelete<\/pre>\n<p>There are two ways to enable Soft Delete. First is at creation of the Key Vault like such:<\/p>\n<pre>New-AzureRmKeyVault -VaultName \"KeyVaultName\" -ResourceGroupName \"KeyVaultRG\" -Location \"westus\" -Sky \u201cPremium\u201d -EnableSoftDelete<\/pre>\n<p>The commands below will enable Soft Delete on an existing Key Vault. &nbsp;At the time of writing, there is no way to enable the option directly with Set-AzureRMKeyVault. &nbsp;Enabling Soft Delete has to be done with the Azure Resource Manager.<\/p>\n<pre>($resource = Get-AzureRmResource -ResourceId (Get-AzureRmKeyVault -VaultName \"ContosoVault\").ResourceId).Properties | Add-Member -MemberType \"NoteProperty\" -Name \"enableSoftDelete\" -Value \"true\"\nSet-AzureRmResource -resourceid $resource.ResourceId -Properties $resource.Properties<\/pre>\n<p>I did notice the warning shown below in the Key Vault indicating the portal does not support Soft Delete. &nbsp;Viewing and recovering deleted keys will need to be done with PowerShell.&nbsp; Details on those steps can be found <a href=\"https:\/\/docs.microsoft.com\/en-us\/azure\/key-vault\/key-vault-soft-delete-powershell\" target=\"_blank\" rel=\"noopener\">here<\/a>.<\/p>\n<p><a href=\"\/wp-content\/uploads\/2018\/09\/Pic1.png\"><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-598 size-full\" title=\"Warning Message\" src=\"\/wp-content\/uploads\/2018\/09\/Pic1.png\" alt=\"Warning Message\" width=\"847\" height=\"39\" srcset=\"https:\/\/www.ciraltos.com\/staging2\/wp-content\/uploads\/2018\/09\/Pic1.png 847w, https:\/\/www.ciraltos.com\/staging2\/wp-content\/uploads\/2018\/09\/Pic1-300x14.png 300w, https:\/\/www.ciraltos.com\/staging2\/wp-content\/uploads\/2018\/09\/Pic1-768x35.png 768w\" sizes=\"(max-width: 847px) 100vw, 847px\" \/><\/a><\/p>\n<h2>Encrypting Disks<\/h2>\n<p>There are two major differences from my last post. &nbsp;First, my original post indicated that it was required to use the Key Encryption Key (KEK) method of disk encryption to support Azure Backup and Recovery. &nbsp;That is no longer the case.&nbsp; You can use KEK for added security by using the key to wrap the encryption secrets, BitLocker Encryption Key (BEK) in this case, before writing to the Key Vault. &nbsp;Alternatively, you can bypass the KEK and write the BEK secret directly to the Key Vault.&nbsp; Both options are supported.<\/p>\n<p>Worth noting, you can also import a KEK from your own key management system. &nbsp;More information <a href=\"https:\/\/docs.microsoft.com\/en-us\/azure\/key-vault\/key-vault-hsm-protected-keys\" target=\"_blank\" rel=\"noopener\">here<\/a>.<\/p>\n<p>The second difference from my original post is that you no longer need to configure an Azure AD application to enable disk encryption and, subsequently, Azure AD credentials are no longer needed to enable encryption. &nbsp;The previous method is still supported, but not required.&nbsp; This is a huge improvement in the way disk encryption works and makes it easier to deploy.<\/p>\n<h3>Set Advanced Access Policies<\/h3>\n<p>The Key Vault needs to be configured for Disk Encryption, as well as for deployments and template deployments if needed. &nbsp;This can be done by going into the Key Vault, Access Policies and selecting \u201cClick here to show advanced access policies\u201d right above \u201cAdd new\u201d<\/p>\n<p><a href=\"\/wp-content\/uploads\/2018\/09\/Pic2.png\"><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-601 size-medium\" src=\"\/wp-content\/uploads\/2018\/09\/Pic2-300x188.png\" alt=\"\" width=\"300\" height=\"188\" srcset=\"https:\/\/www.ciraltos.com\/staging2\/wp-content\/uploads\/2018\/09\/Pic2-300x188.png 300w, https:\/\/www.ciraltos.com\/staging2\/wp-content\/uploads\/2018\/09\/Pic2.png 422w\" sizes=\"(max-width: 300px) 100vw, 300px\" \/><\/a><\/p>\n<p>This can also be set in PowerShell with the commands below:<\/p>\n<pre>Set-AzureRmKeyVaultAccessPolicy -VaultName 'MySecureVault' -ResourceGroupName 'MySecureRG' -EnabledForDiskEncryption\nSet-AzureRmKeyVaultAccessPolicy -VaultName 'MySecureVault' -ResourceGroupName 'MySecureRG' -EnabledForDeployment\nSet-AzureRmKeyVaultAccessPolicy -VaultName 'MySecureVault' -ResourceGroupName 'MySecureRG' -EnabledForTemplateDeployment<\/pre>\n<h3>Create the KEK<\/h3>\n<p>Although no longer required, I plan to use a KEK for Azure Disk Encryption on my servers.&nbsp; The Key Vault has been created and Soft Delete enabled.&nbsp; Next step is to create the KEK. &nbsp;The command below will create an HSM KEK.&nbsp; If you are not using the Premium Key Vault, change the -destination value to \u2018Software\u2019<\/p>\n<pre>$KeyVaultName = 'keyVaultName'\n$keyEncryptionKeyName = \u2018KEKName\u2019\n$keyVaultRg = \u2018KeyVaultResourceGroup\u2019\n$KeyVault = Get-AzureRmKeyVault -VaultName $KeyVaultName -ResourceGroupName $keyVaultRg\nAdd-AzureKeyVaultKey -VaultName $KeyVaultName -Name $keyEncryptionKeyName -Destination \u2018HSM\u2019;<\/pre>\n<p>Finally, run the commands below to start disk encryption on the server.<\/p>\n<blockquote><p>Remember to test and run a backup before making any changes to production data.&nbsp; Microsoft&#8217;s requirement is to run a backup before encryption for Azure VM\u2019s with managed disks.&nbsp; Once backed up, use the Set-AzureRmVMDiskEncryptionExtention command as outlined below with the -skipVmBackup parameter.<\/p><\/blockquote>\n<p>&nbsp;<\/p>\n<pre>$vmName = 'Test201801'\n$vmRgName = 'test2018'\n$diskEncryptionKvUrl = $KeyVault.VaultUri\n$keyVaultResourceId = $KeyVault.ResourceId\n$keyEncryptionKeyUrl = (Get-AzureKeyVaultKey -VaultName $keyVaultName -Name $keyEncryptionKeyName).Key.kid;\nSet-AzureRmVMDiskEncryptionExtension -ResourceGroupName $vmRgName -VMName $vmName -DiskEncryptionKeyVaultUrl $diskEncryptionKvUrl -DiskEncryptionKeyVaultId `\n$keyVaultResourceId -KeyEncryptionKeyUrl $keyEncryptionKeyUrl -KeyEncryptionKeyVaultId $KeyVaultResourceId;<\/pre>\n<p>Alternatively, you could run BitLocker without the KEK using the command below.<\/p>\n<pre>Set-AzureRmVMDiskEncryptionExtension -ResourceGroupName $vmRgName -VMName $vmName -DiskEncryptionKeyVaultUrl $diskEncryptionKvUrl -DiskEncryptionKeyVaultId $keyVaultResourceId;<\/pre>\n<p>That\u2019s all there is to it. &nbsp;Keep in mind that Dynamic disks can\u2019t be protected by BitLocker.&nbsp; Storage Space Direct works well as an alternative. &nbsp;Also, Windows will encrypt any drives added to the server after encryption is enabled.<\/p>\n<p>Also, there is still no way to do a single file recovery with encrypted disks. &nbsp;Full server recovery is possible.&nbsp; More information on recovering encrypted servers <a href=\"http:\/\/www.ciraltos.com\/recover-encrypted-windows-azure-vm\/\" target=\"_blank\" rel=\"noopener\">here<\/a>.<\/p>\n<h2>Disk Encryption with ARM Template<\/h2>\n<p>In this section I\u2019m going to extend on the above by enabling disk encryption as part of the template deployment. &nbsp;I will use the same Key Vault and KEK settings as outlined above.<\/p>\n<p>I leveraged the AzureDiskEncryption Extension to accomplish my goal. &nbsp;The QuickStart Template can be found <a href=\"https:\/\/github.com\/Azure\/azure-quickstart-templates\/blob\/master\/201-encrypt-running-windows-vm-without-aad\/azuredeploy.json\" target=\"_blank\" rel=\"noopener\">here<\/a>.<\/p>\n<p>I modified it in my environment to include only what was needed to run BitLocker. &nbsp;The first pass looked like this:<\/p>\n<p><a href=\"\/wp-content\/uploads\/2018\/09\/Pic3.png\"><img decoding=\"async\" loading=\"lazy\" class=\"aligncenter wp-image-602 size-large\" src=\"\/wp-content\/uploads\/2018\/09\/Pic3-1024x417.png\" alt=\"\" width=\"640\" height=\"261\" srcset=\"https:\/\/www.ciraltos.com\/staging2\/wp-content\/uploads\/2018\/09\/Pic3-1024x417.png 1024w, https:\/\/www.ciraltos.com\/staging2\/wp-content\/uploads\/2018\/09\/Pic3-300x122.png 300w, https:\/\/www.ciraltos.com\/staging2\/wp-content\/uploads\/2018\/09\/Pic3-768x313.png 768w, https:\/\/www.ciraltos.com\/staging2\/wp-content\/uploads\/2018\/09\/Pic3.png 1371w\" sizes=\"(max-width: 640px) 100vw, 640px\" \/><\/a><\/p>\n<p>I ran into an issue due to a Domain Join extension causing a restart before BitLocker ran.&nbsp; I had to change the Domain Join restart parameter to prevent a reboot at that stage.&nbsp; The server will reboot as part of disk encryption, that will take care of the Domain Join reboot as well.&nbsp; Simply change the Domain Join &#8220;Restart&#8221;:&nbsp; option from &#8220;True&#8221; to &#8220;False&#8221;<\/p>\n<p>That worked, but I prefer to clean it up for multiple deployments by using template parameters.&nbsp; The final version of the template had the following sections added.<\/p>\n<p>Template Parameters:<\/p>\n<pre>\"keyVaultURL\": {\n  \"type\": \"string\",\n  \"metadata\": {\n    \"description\": \"The URL for the Key Vault used to store the KEK and BEK\"\n  }\n},\n\"keyVaultResourceId\": {\n  \"type\": \"string\",\n  \"metadata\": {\n    \"description\": \"Resource ID for the KeyVault, starts with \/subscriptions\"\n  }\n},\n\"keyEncryptionKeyURL\": {\n  \"type\": \"string\",\n  \"metadata\": {\n    \"description\": \"The URL for the KEK that will be used as a wrapper for the BEK\"\n  }\n}<\/pre>\n<p>Template Extension<\/p>\n<pre> {\n&nbsp; \"type\": \"Microsoft.Compute\/virtualMachines\/extensions\",\n&nbsp; \"name\": \"[concat(parameters('virtualMachineNamePrefix'), copyIndex(1),'\/AzureDiskEncryption')]\",\n&nbsp; \"location\": \"[parameters('location')]\",\n&nbsp; \"apiVersion\": \"2018-06-01\",\n&nbsp; \"tags\": \"[parameters('tagValues')]\",\n&nbsp; \"copy\": {\n&nbsp; &nbsp; \"name\": \"DiskEncryptionLoop\",\n&nbsp; &nbsp; \"count\": \"[parameters('numberOfInstances')]\"\n},\n  \"dependsOn\": [\n&nbsp;   \"[concat('Microsoft.Compute\/virtualMachines\/', parameters('virtualMachineNamePrefix'), copyIndex(1))]\"\n],\n  \"properties\": {\n&nbsp; &nbsp; \"publisher\": \"Microsoft.Azure.Security\",\n&nbsp; &nbsp; \"type\": \"AzureDiskEncryption\",\n&nbsp; &nbsp; \"typeHandlerVersion\": \"2.2\",\n&nbsp; &nbsp; \"autoUpgradeMinorVersion\": true,\n&nbsp; &nbsp; \"settings\": {\n&nbsp; &nbsp; &nbsp; \"EncryptionOperation\": \"EnableEncryption\",\n&nbsp; &nbsp; &nbsp; \"KeyVaultURL\": \"[parameters('keyVaultURL')]\",\n&nbsp; &nbsp; &nbsp; \"KeyVaultResourceId\": \"[parameters('keyVaultResourceId')]\",\n&nbsp; &nbsp; &nbsp; \"KeyEncryptionKeyURL\": \"[parameters('keyEncryptionKeyURL')]\",\n&nbsp; &nbsp; &nbsp; \"KekVaultResourceId\": \"[parameters('keyVaultResourceId')]\",\n&nbsp; &nbsp; &nbsp; \"VolumeType\": \"All\",\n&nbsp; &nbsp; &nbsp; \"ResizeOSDisk\": \"false\"\n&nbsp; &nbsp; &nbsp; }\n&nbsp; &nbsp;}\n}<\/pre>\n<p>Parameters File<\/p>\n<pre>\"keyVaultURL\": {\n  \"value\": \"https:\/\/centraldiskencrypkv01.vault.azure.net\/\"\n},\n\"keyVaultResourceId\": {\n  \"value\": \"\/subscriptions\/dd7abc6d-27c2-4030-9046-b9a8c9477e60\/resourceGroups\/CentralKV01\/providers\/Microsoft.KeyVault\/vaults\/CentralDiskEncrypKV01\"\n},\n\"keyEncryptionKeyURL\": {\n  \"value\": \"https:\/\/centraldiskencrypkv01.vault.azure.net\/keys\/MyKeyEncryptionKey\/aaae6f6900ae4d398f46eaa15bea193a\"\n}<\/pre>\n<p>The full template and parameter file are available on my Github page located <a href=\"https:\/\/github.com\/tsrob50\/DynamicNumberVMandDataDisk\" target=\"_blank\" rel=\"noopener\">here<\/a>.<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n<p>&nbsp;<\/p>\n","protected":false},"excerpt":{"rendered":"<p>The only constant is change. &nbsp;I noticed some new information came out this month while working on a project that requires encrypting disks. &nbsp;This information significantly changes how Azure Disk Encryption can be applied to Windows and Linux VM\u2019s.&nbsp; This is an update to my previous article on Azure Disk Encryption with the intention of &hellip;<\/p>\n<p class=\"read-more\"> <a class=\"\" href=\"https:\/\/www.ciraltos.com\/staging2\/azure-disk-encryption-v2\/\"> <span class=\"screen-reader-text\">Azure Disk Encryption, V2<\/span> Read More &raquo;<\/a><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"site-sidebar-layout":"default","site-content-layout":"default","ast-global-header-display":"","ast-main-header-display":"","ast-hfb-above-header-display":"","ast-hfb-below-header-display":"","ast-hfb-mobile-header-display":"","site-post-title":"","ast-breadcrumbs-content":"","ast-featured-img":"","footer-sml-layout":"","theme-transparent-header-meta":"","adv-header-id-meta":"","stick-header-meta":"","header-above-stick-meta":"","header-main-stick-meta":"","header-below-stick-meta":""},"categories":[2],"tags":[175,9,154,12,149,148,20,75,153,39,274,122],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v20.3 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>Azure Disk Encryption, V2 - ciraltos<\/title>\n<meta name=\"description\" content=\"This is an update to my previous article on Azure Disk Encryption with the intention of outlining the new, easier method of encrypting Azure disks.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/www.ciraltos.com\/staging2\/azure-disk-encryption-v2\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Azure Disk Encryption, V2 - ciraltos\" \/>\n<meta property=\"og:description\" content=\"This is an update to my previous article on Azure Disk Encryption with the intention of outlining the new, easier method of encrypting Azure disks.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/www.ciraltos.com\/staging2\/azure-disk-encryption-v2\/\" \/>\n<meta property=\"og:site_name\" content=\"ciraltos\" \/>\n<meta property=\"article:published_time\" content=\"2018-09-16T16:39:20+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2023-03-24T05:04:40+00:00\" \/>\n<meta name=\"author\" content=\"Travis Roberts\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@ciraltos\" \/>\n<meta name=\"twitter:site\" content=\"@ciraltos\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"Travis Roberts\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"6 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\/\/www.ciraltos.com\/staging2\/azure-disk-encryption-v2\/#article\",\"isPartOf\":{\"@id\":\"https:\/\/www.ciraltos.com\/staging2\/azure-disk-encryption-v2\/\"},\"author\":{\"name\":\"Travis Roberts\",\"@id\":\"https:\/\/www.ciraltos.com\/staging2\/#\/schema\/person\/25391996d6cddfecd4d257162b7e373a\"},\"headline\":\"Azure Disk Encryption, V2\",\"datePublished\":\"2018-09-16T16:39:20+00:00\",\"dateModified\":\"2023-03-24T05:04:40+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\/\/www.ciraltos.com\/staging2\/azure-disk-encryption-v2\/\"},\"wordCount\":989,\"commentCount\":20,\"publisher\":{\"@id\":\"https:\/\/www.ciraltos.com\/staging2\/#\/schema\/person\/25391996d6cddfecd4d257162b7e373a\"},\"keywords\":[\"ARM\",\"Azure\",\"Azure Disk Encryption\",\"cloud\",\"disk\",\"encryption\",\"Powershell\",\"server\",\"Set-AzureRmVMDiskEncryptionExtension\",\"storage\",\"storage space direct\",\"windows\"],\"articleSection\":[\"Azure\"],\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"CommentAction\",\"name\":\"Comment\",\"target\":[\"https:\/\/www.ciraltos.com\/staging2\/azure-disk-encryption-v2\/#respond\"]}]},{\"@type\":\"WebPage\",\"@id\":\"https:\/\/www.ciraltos.com\/staging2\/azure-disk-encryption-v2\/\",\"url\":\"https:\/\/www.ciraltos.com\/staging2\/azure-disk-encryption-v2\/\",\"name\":\"Azure Disk Encryption, V2 - ciraltos\",\"isPartOf\":{\"@id\":\"https:\/\/www.ciraltos.com\/staging2\/#website\"},\"datePublished\":\"2018-09-16T16:39:20+00:00\",\"dateModified\":\"2023-03-24T05:04:40+00:00\",\"description\":\"This is an update to my previous article on Azure Disk Encryption with the intention of outlining the new, easier method of encrypting Azure disks.\",\"breadcrumb\":{\"@id\":\"https:\/\/www.ciraltos.com\/staging2\/azure-disk-encryption-v2\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/www.ciraltos.com\/staging2\/azure-disk-encryption-v2\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/www.ciraltos.com\/staging2\/azure-disk-encryption-v2\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/www.ciraltos.com\/staging2\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Azure Disk Encryption, V2\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/www.ciraltos.com\/staging2\/#website\",\"url\":\"https:\/\/www.ciraltos.com\/staging2\/\",\"name\":\"ciraltos\",\"description\":\"cloud, technology and trends\",\"publisher\":{\"@id\":\"https:\/\/www.ciraltos.com\/staging2\/#\/schema\/person\/25391996d6cddfecd4d257162b7e373a\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/www.ciraltos.com\/staging2\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"en-US\"},{\"@type\":[\"Person\",\"Organization\"],\"@id\":\"https:\/\/www.ciraltos.com\/staging2\/#\/schema\/person\/25391996d6cddfecd4d257162b7e373a\",\"name\":\"Travis Roberts\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/www.ciraltos.com\/staging2\/#\/schema\/person\/image\/\",\"url\":\"https:\/\/www.ciraltos.com\/staging2\/wp-content\/uploads\/2023\/03\/Logo-1.png\",\"contentUrl\":\"https:\/\/www.ciraltos.com\/staging2\/wp-content\/uploads\/2023\/03\/Logo-1.png\",\"width\":5657,\"height\":3563,\"caption\":\"Travis Roberts\"},\"logo\":{\"@id\":\"https:\/\/www.ciraltos.com\/staging2\/#\/schema\/person\/image\/\"},\"sameAs\":[\"http:\/\/www.ciraltos.com\",\"https:\/\/twitter.com\/ciraltos\"],\"url\":\"https:\/\/www.ciraltos.com\/staging2\/author\/admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Azure Disk Encryption, V2 - ciraltos","description":"This is an update to my previous article on Azure Disk Encryption with the intention of outlining the new, easier method of encrypting Azure disks.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/www.ciraltos.com\/staging2\/azure-disk-encryption-v2\/","og_locale":"en_US","og_type":"article","og_title":"Azure Disk Encryption, V2 - ciraltos","og_description":"This is an update to my previous article on Azure Disk Encryption with the intention of outlining the new, easier method of encrypting Azure disks.","og_url":"https:\/\/www.ciraltos.com\/staging2\/azure-disk-encryption-v2\/","og_site_name":"ciraltos","article_published_time":"2018-09-16T16:39:20+00:00","article_modified_time":"2023-03-24T05:04:40+00:00","author":"Travis Roberts","twitter_card":"summary_large_image","twitter_creator":"@ciraltos","twitter_site":"@ciraltos","twitter_misc":{"Written by":"Travis Roberts","Est. reading time":"6 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/www.ciraltos.com\/staging2\/azure-disk-encryption-v2\/#article","isPartOf":{"@id":"https:\/\/www.ciraltos.com\/staging2\/azure-disk-encryption-v2\/"},"author":{"name":"Travis Roberts","@id":"https:\/\/www.ciraltos.com\/staging2\/#\/schema\/person\/25391996d6cddfecd4d257162b7e373a"},"headline":"Azure Disk Encryption, V2","datePublished":"2018-09-16T16:39:20+00:00","dateModified":"2023-03-24T05:04:40+00:00","mainEntityOfPage":{"@id":"https:\/\/www.ciraltos.com\/staging2\/azure-disk-encryption-v2\/"},"wordCount":989,"commentCount":20,"publisher":{"@id":"https:\/\/www.ciraltos.com\/staging2\/#\/schema\/person\/25391996d6cddfecd4d257162b7e373a"},"keywords":["ARM","Azure","Azure Disk Encryption","cloud","disk","encryption","Powershell","server","Set-AzureRmVMDiskEncryptionExtension","storage","storage space direct","windows"],"articleSection":["Azure"],"inLanguage":"en-US","potentialAction":[{"@type":"CommentAction","name":"Comment","target":["https:\/\/www.ciraltos.com\/staging2\/azure-disk-encryption-v2\/#respond"]}]},{"@type":"WebPage","@id":"https:\/\/www.ciraltos.com\/staging2\/azure-disk-encryption-v2\/","url":"https:\/\/www.ciraltos.com\/staging2\/azure-disk-encryption-v2\/","name":"Azure Disk Encryption, V2 - ciraltos","isPartOf":{"@id":"https:\/\/www.ciraltos.com\/staging2\/#website"},"datePublished":"2018-09-16T16:39:20+00:00","dateModified":"2023-03-24T05:04:40+00:00","description":"This is an update to my previous article on Azure Disk Encryption with the intention of outlining the new, easier method of encrypting Azure disks.","breadcrumb":{"@id":"https:\/\/www.ciraltos.com\/staging2\/azure-disk-encryption-v2\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/www.ciraltos.com\/staging2\/azure-disk-encryption-v2\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/www.ciraltos.com\/staging2\/azure-disk-encryption-v2\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/www.ciraltos.com\/staging2\/"},{"@type":"ListItem","position":2,"name":"Azure Disk Encryption, V2"}]},{"@type":"WebSite","@id":"https:\/\/www.ciraltos.com\/staging2\/#website","url":"https:\/\/www.ciraltos.com\/staging2\/","name":"ciraltos","description":"cloud, technology and trends","publisher":{"@id":"https:\/\/www.ciraltos.com\/staging2\/#\/schema\/person\/25391996d6cddfecd4d257162b7e373a"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/www.ciraltos.com\/staging2\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-US"},{"@type":["Person","Organization"],"@id":"https:\/\/www.ciraltos.com\/staging2\/#\/schema\/person\/25391996d6cddfecd4d257162b7e373a","name":"Travis Roberts","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/www.ciraltos.com\/staging2\/#\/schema\/person\/image\/","url":"https:\/\/www.ciraltos.com\/staging2\/wp-content\/uploads\/2023\/03\/Logo-1.png","contentUrl":"https:\/\/www.ciraltos.com\/staging2\/wp-content\/uploads\/2023\/03\/Logo-1.png","width":5657,"height":3563,"caption":"Travis Roberts"},"logo":{"@id":"https:\/\/www.ciraltos.com\/staging2\/#\/schema\/person\/image\/"},"sameAs":["http:\/\/www.ciraltos.com","https:\/\/twitter.com\/ciraltos"],"url":"https:\/\/www.ciraltos.com\/staging2\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/www.ciraltos.com\/staging2\/wp-json\/wp\/v2\/posts\/596"}],"collection":[{"href":"https:\/\/www.ciraltos.com\/staging2\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.ciraltos.com\/staging2\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.ciraltos.com\/staging2\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.ciraltos.com\/staging2\/wp-json\/wp\/v2\/comments?post=596"}],"version-history":[{"count":14,"href":"https:\/\/www.ciraltos.com\/staging2\/wp-json\/wp\/v2\/posts\/596\/revisions"}],"predecessor-version":[{"id":4076,"href":"https:\/\/www.ciraltos.com\/staging2\/wp-json\/wp\/v2\/posts\/596\/revisions\/4076"}],"wp:attachment":[{"href":"https:\/\/www.ciraltos.com\/staging2\/wp-json\/wp\/v2\/media?parent=596"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.ciraltos.com\/staging2\/wp-json\/wp\/v2\/categories?post=596"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.ciraltos.com\/staging2\/wp-json\/wp\/v2\/tags?post=596"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}