Microsoft.Compute diskEncryptionSets 2020-06-30
Bicep 資源定義
diskEncryptionSets 資源類型可以使用目標作業來部署:
如需每個 API 版本中已變更屬性的清單,請參閱 變更記錄檔。
若要建立 Microsoft.Compute/diskEncryptionSets 資源,請將下列 Bicep 新增至範本。
resource symbolicname 'Microsoft.Compute/diskEncryptionSets@2020-06-30' = {
identity: {
type: 'string'
}
location: 'string'
name: 'string'
properties: {
activeKey: {
keyUrl: 'string'
sourceVault: {
id: 'string'
}
}
encryptionType: 'string'
}
tags: {
{customized property}: 'string'
}
}
屬性值
EncryptionSetIdentity
名字 |
描述 |
價值 |
類型 |
DiskEncryptionSet 所使用的受控識別類型。 僅支援 SystemAssigned。 |
'SystemAssigned' |
EncryptionSetProperties
名字 |
描述 |
價值 |
activeKey |
此磁碟加密集目前使用的金鑰保存庫金鑰。 |
KeyVaultAndKeyReference |
encryptionType |
用來加密磁碟數據的金鑰類型。 |
'EncryptionAtRestWithCustomerKey' 'EncryptionAtRestWithPlatformAndCustomerKeys' |
KeyVaultAndKeyReference
名字 |
描述 |
價值 |
keyUrl |
指向 KeyVault 中金鑰或秘密的 URL |
字串 (必要) |
sourceVault |
包含金鑰或秘密之 KeyVault 的資源識別碼 |
SourceVault (必要) |
Microsoft.Compute/diskEncryptionSets
SourceVault
ARM 樣本資源定義
diskEncryptionSets 資源類型可以使用目標作業來部署:
如需每個 API 版本中已變更屬性的清單,請參閱 變更記錄檔。
若要建立 Microsoft.Compute/diskEncryptionSets 資源,請將下列 JSON 新增至範本。
{
"type": "Microsoft.Compute/diskEncryptionSets",
"apiVersion": "2020-06-30",
"name": "string",
"identity": {
"type": "string"
},
"location": "string",
"properties": {
"activeKey": {
"keyUrl": "string",
"sourceVault": {
"id": "string"
}
},
"encryptionType": "string"
},
"tags": {
"{customized property}": "string"
}
}
屬性值
EncryptionSetIdentity
名字 |
描述 |
價值 |
類型 |
DiskEncryptionSet 所使用的受控識別類型。 僅支援 SystemAssigned。 |
'SystemAssigned' |
EncryptionSetProperties
名字 |
描述 |
價值 |
activeKey |
此磁碟加密集目前使用的金鑰保存庫金鑰。 |
KeyVaultAndKeyReference |
encryptionType |
用來加密磁碟數據的金鑰類型。 |
'EncryptionAtRestWithCustomerKey' 'EncryptionAtRestWithPlatformAndCustomerKeys' |
KeyVaultAndKeyReference
名字 |
描述 |
價值 |
keyUrl |
指向 KeyVault 中金鑰或秘密的 URL |
字串 (必要) |
sourceVault |
包含金鑰或秘密之 KeyVault 的資源識別碼 |
SourceVault (必要) |
Microsoft.Compute/diskEncryptionSets
名字 |
描述 |
價值 |
apiVersion |
API 版本 |
'2020-06-30' |
身份 |
磁碟加密集的受控識別。 它應該授與金鑰保存庫的許可權,才能用來加密磁碟。 |
EncryptionSetIdentity |
位置 |
資源位置 |
字串 (必要) |
名字 |
資源名稱 |
字串 (必要) |
性能 |
|
EncryptionSetProperties |
標籤 |
資源標籤 |
標記名稱和值的字典。 請參閱範本中的 標籤 |
類型 |
資源類型 |
'Microsoft.Compute/diskEncryptionSets' |
SourceVault
diskEncryptionSets 資源類型可以使用目標作業來部署:
如需每個 API 版本中已變更屬性的清單,請參閱 變更記錄檔。
若要建立 Microsoft.Compute/diskEncryptionSets 資源,請將下列 Terraform 新增至範本。
resource "azapi_resource" "symbolicname" {
type = "Microsoft.Compute/diskEncryptionSets@2020-06-30"
name = "string"
identity = {
type = "string"
}
location = "string"
tags = {
{customized property} = "string"
}
body = jsonencode({
properties = {
activeKey = {
keyUrl = "string"
sourceVault = {
id = "string"
}
}
encryptionType = "string"
}
})
}
屬性值
EncryptionSetIdentity
名字 |
描述 |
價值 |
類型 |
DiskEncryptionSet 所使用的受控識別類型。 僅支援 SystemAssigned。 |
'SystemAssigned' |
EncryptionSetProperties
名字 |
描述 |
價值 |
activeKey |
此磁碟加密集目前使用的金鑰保存庫金鑰。 |
KeyVaultAndKeyReference |
encryptionType |
用來加密磁碟數據的金鑰類型。 |
'EncryptionAtRestWithCustomerKey' 'EncryptionAtRestWithPlatformAndCustomerKeys' |
KeyVaultAndKeyReference
名字 |
描述 |
價值 |
keyUrl |
指向 KeyVault 中金鑰或秘密的 URL |
字串 (必要) |
sourceVault |
包含金鑰或秘密之 KeyVault 的資源識別碼 |
SourceVault (必要) |
Microsoft.Compute/diskEncryptionSets
SourceVault