使用客户管理的密钥创建存储服务加密 ARM 模板

Posted

技术标签:

【中文标题】使用客户管理的密钥创建存储服务加密 ARM 模板【英文标题】:Create Storage Service Encryption ARM template with Customer managed key 【发布时间】:2018-09-19 22:05:37 【问题描述】:

我们正在尝试创建一个允许我们指定自己的加密密钥的 ARM 模板。我有下面的脚本,这会加密存储帐户,但是这不允许我们添加自己的密钥。

有没有办法以编程方式添加它,我知道可以使用门户来完成。

我的脚本是


  "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
  "contentVersion": "1.0.0.0",
  "parameters": 
    "storageNamePrefix": 
      "type": "string",
      "metadata": 
        "description": "The prefix string to add to a generated name."
      
    ,
    "storageAccountType": 
      "type": "string",
      "defaultValue": "Standard_LRS",
      "allowedValues": [
        "Standard_LRS",
        "Standard_GRS",
        "Standard_RAGRS",
        "Standard_ZRS",
        "Premium_LRS"
      ],
      "metadata": 
        "description": "Storage Account type."
      
    ,
    "blobEncryptionEnabled": 
      "type": "bool",
      "defaultValue": true,
      "allowedValues": [
        true,
        false
      ],
      "metadata": 
        "description": "Enable or disable Blob encryption."
      
    
  ,
  "variables": 
    "storageAccountName": "[tolower( concat( parameters('storageNamePrefix'), uniqueString(subscription().id, resourceGroup().id) ))]",
  ,
  "resources": [
    
      "type": "Microsoft.Storage/storageAccounts",
      "name": "[variables('storageAccountName')]",
      "apiVersion": "2016-01-01",
      "location": "[resourceGroup().location]",
      "sku": 
        "name": "[parameters('storageAccountType')]"
      ,
      "kind": "Storage",
      "properties": 
        "encryption": 
          "keySource": "Microsoft.Storage",
          "services": 
            "blob": 
              "enabled": "[parameters('blobEncryptionEnabled')]"
            
          
        
      
    
  ],
  "outputs": 
    "storageAccountName": 
      "type": "string",
      "value": "[variables('storageAccountName')]"
    
  

我在 Azure 快速入门模板上看到了这个,它似乎有我需要的标题,但我看不到在哪里或如何添加我想使用的密钥..


  "$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#",
  "contentVersion": "1.0.0.0",
  "parameters": 
    "storageAccountType": 
      "type": "string",
      "defaultValue": "Standard_LRS",
      "allowedValues": [
        "Standard_LRS",
        "Standard_GRS",
        "Standard_RAGRS",
        "Standard_ZRS",
        "Premium_LRS"
      ],
      "metadata": 
        "description": "Storage Account type."
      
    ,
    "blobEncryptionEnabled": 
      "type": "bool",
      "defaultValue": true,
      "metadata": 
        "description": "Enable or disable Blob encryption at Rest."
      
    
  ,
  "variables": 
    "storageAccountName": "[tolower( concat('sawithsse', substring(parameters('storageAccountType'), 0, 2), uniqueString(subscription().id, resourceGroup().id) ))]"
  ,
  "resources": [
    
      "type": "Microsoft.Storage/storageAccounts",
      "name": "[variables('storageAccountName')]",
      "apiVersion": "2016-12-01",
      "location": "[resourceGroup().location]",
      "sku": 
        "name": "[parameters('storageAccountType')]"
      ,
      "kind": "Storage",
      "properties": 
        "encryption": 
          "keySource": "Microsoft.Storage",
          "services": 
            "blob": 
              "enabled": "[parameters('blobEncryptionEnabled')]"
            
          
        
      
    
  ],
  "outputs": 
    "storageAccountName": 
      "type": "string",
      "value": "[variables('storageAccountName')]"
    
  

以下链接概述了启用客户密钥进行加密的门户方式:

https://docs.microsoft.com/en-us/azure/storage/common/storage-service-encryption-customer-managed-keys

这个链接提到了使用 Powershell 的能力,但我找不到任何参考。

希望这是有道理的。

提前谢谢.. :)

【问题讨论】:

也许你可以看看这个link。 【参考方案1】:

类似这样的:

"properties": 
    "encryption": 
        "keySource": "Microsoft.Keyvault",
        "keyvaultproperties": 
            "keyname": xxx,
            "keyvaulturi": xxx,
            "keyversion": xxx
        
    

来源:https://docs.microsoft.com/en-us/rest/api/storagerp/storageaccounts/create#keyvaultproperties

另一种方法,使用 powershell 执行此操作,添加 -debug 并捕获其余调用,将其移植到模板。

【讨论】:

谢谢,我添加了,但收到以下错误消息14 - "error": 15:37:14 - "code": "UnknownEncryptionKeySource", 15:37:14 - "message": "Microsoft.Keyvault is not a known encryption key source." 15:37:14 - 尝试使用最新的api版本? 添加此部分后,我收到此错误消息:“缺少为此存储帐户启用 EncryptionAtRest/客户管理密钥的先决条件”。我错过了什么? 请创建一个包含所有详细信息的新问题。

以上是关于使用客户管理的密钥创建存储服务加密 ARM 模板的主要内容,如果未能解决你的问题,请参考以下文章

ARM - 如何从存储帐户获取访问密钥,以便稍后在模板中的 AppSettings 中使用?

无法通过 ARM 模板将 CMK 加密应用于 Azure 存储帐户

Amazon S3 加密

在 ARM 模板中使用访问密钥检索在 Azure 容器上装载 Azure 文件共享

如何在 ARM 模板中创建 Key Vault 托管存储帐户?

如何在数据库中存储加密的机密用户信息,需要在运行时解密?