你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn。
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 |
string (必需) |
sourceVault |
包含密钥或机密的 KeyVault 的资源 ID |
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 |
string (必需) |
sourceVault |
包含密钥或机密的 KeyVault 的资源 ID |
SourceVault (必需) |
Microsoft.Compute/diskEncryptionSets
名字 |
描述 |
价值 |
apiVersion |
API 版本 |
'2020-06-30' |
身份 |
磁盘加密集的托管标识。 它应授予对密钥保管库的权限,然后才能用于加密磁盘。 |
EncryptionSetIdentity |
位置 |
资源位置 |
string (必需) |
名字 |
资源名称 |
string (必需) |
性能 |
|
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 |
string (必需) |
sourceVault |
包含密钥或机密的 KeyVault 的资源 ID |
SourceVault (必需) |
Microsoft.Compute/diskEncryptionSets
SourceVault