你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

Microsoft.AppConfiguration configurationStores

Bicep 资源定义

可以使用目标操作部署 configurationStores 资源类型:

有关每个 API 版本中已更改属性的列表,请参阅 更改日志

资源格式

若要创建 Microsoft.AppConfiguration/configurationStores 资源,请将以下 Bicep 添加到模板。

resource symbolicname 'Microsoft.AppConfiguration/configurationStores@2024-05-01' = {
  identity: {
    type: 'string'
    userAssignedIdentities: {
      {customized property}: {}
    }
  }
  location: 'string'
  name: 'string'
  properties: {
    createMode: 'string'
    dataPlaneProxy: {
      authenticationMode: 'string'
      privateLinkDelegation: 'string'
    }
    disableLocalAuth: bool
    enablePurgeProtection: bool
    encryption: {
      keyVaultProperties: {
        identityClientId: 'string'
        keyIdentifier: 'string'
      }
    }
    publicNetworkAccess: 'string'
    softDeleteRetentionInDays: int
  }
  sku: {
    name: 'string'
  }
  tags: {
    {customized property}: 'string'
  }
}

属性值

ConfigurationStoreProperties

名字 描述 价值
createMode 指示是否需要恢复配置存储。 “Default”
“恢复”
dataPlaneProxy 指定 Azure 资源管理器(ARM)的数据平面代理配置的属性。 DataPlaneProxyProperties
disableLocalAuth 禁用除 AAD 身份验证以外的所有身份验证方法。 bool
enablePurgeProtection 指定是否为此配置存储启用针对清除的保护的属性。 bool
加密 配置存储的加密设置。 EncryptionProperties
publicNetworkAccess 启用专用终结点时,控制来自公用网络的数据平面流量的权限。 “Disabled”
“Enabled”
softDeleteRetentionInDays 软删除配置存储时保留的时间(以天为单位)。 int

DataPlaneProxyProperties

名字 描述 价值
authenticationMode 数据平面代理身份验证模式。 此属性管理对数据平面资源的请求的身份验证模式。 “Local”
“直通”
privateLinkDelegation 数据平面代理专用链接委派。 当数据平面资源需要专用链接时,此属性管理是否允许来自委托的 Azure 资源管理器 (ARM) 专用链接的请求。 “Disabled”
“Enabled”

EncryptionProperties

名字 描述 价值
keyVaultProperties Key Vault 属性。 KeyVaultProperties

KeyVaultProperties

名字 描述 价值
identityClientId 将用于访问密钥保管库的标识的客户端 ID。 字符串
keyIdentifier 用于加密数据的密钥保管库密钥的 URI。 字符串

Microsoft.AppConfiguration/configurationStores

名字 描述 价值
身份 托管标识信息(如果已配置)。 ResourceIdentity
位置 资源所在的地理位置 string (必需)
名字 资源名称 字符串

约束:
最小长度 = 5
最大长度 = 50
模式 = ^[a-zA-Z0-9_-]*$ (必需)
性能 配置存储区的属性。 ConfigurationStoreProperties
sku 配置存储的 SKU。 Sku(必需)
标签 资源标记 标记名称和值的字典。 请参阅模板 中的 标记

ResourceIdentity

名字 描述 价值
类型 使用的托管标识的类型。 类型“SystemAssigned,UserAssigned”包括隐式创建的标识和一组用户分配的标识。 类型“None”将删除任何标识。 “None”
“SystemAssigned”
“SystemAssigned,UserAssigned”
“UserAssigned”
userAssignedIdentities 与资源关联的用户分配标识的列表。 用户分配的标识字典密钥将为 ARM 资源 ID,格式为“/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}”。 ResourceIdentityUserAssignedIdentities

ResourceIdentityUserAssignedIdentities

名字 描述 价值

Sku

名字 描述 价值
名字 配置存储的 SKU 名称。 string (必需)

TrackedResourceTags

名字 描述 价值

UserIdentity

名字 描述 价值

快速入门示例

以下快速入门示例部署此资源类型。

Bicep 文件 描述
创建应用配置存储 此模板创建 Azure 应用配置存储。
使用功能标志创建应用配置存储 此模板创建一个新的 Azure 应用配置存储区,其中包含一个功能标志。
使用功能标志创建应用配置存储 此模板使用一个 Key Vault 引用创建新的 Azure 应用配置存储。
使用输出创建应用配置存储 此模板使用两个键值创建新的 Azure 应用配置存储。

ARM 模板资源定义

可以使用目标操作部署 configurationStores 资源类型:

有关每个 API 版本中已更改属性的列表,请参阅 更改日志

资源格式

若要创建 Microsoft.AppConfiguration/configurationStores 资源,请将以下 JSON 添加到模板。

{
  "type": "Microsoft.AppConfiguration/configurationStores",
  "apiVersion": "2024-05-01",
  "name": "string",
  "identity": {
    "type": "string",
    "userAssignedIdentities": {
      "{customized property}": {
      }
    }
  },
  "location": "string",
  "properties": {
    "createMode": "string",
    "dataPlaneProxy": {
      "authenticationMode": "string",
      "privateLinkDelegation": "string"
    },
    "disableLocalAuth": "bool",
    "enablePurgeProtection": "bool",
    "encryption": {
      "keyVaultProperties": {
        "identityClientId": "string",
        "keyIdentifier": "string"
      }
    },
    "publicNetworkAccess": "string",
    "softDeleteRetentionInDays": "int"
  },
  "sku": {
    "name": "string"
  },
  "tags": {
    "{customized property}": "string"
  }
}

属性值

ConfigurationStoreProperties

名字 描述 价值
createMode 指示是否需要恢复配置存储。 “Default”
“恢复”
dataPlaneProxy 指定 Azure 资源管理器(ARM)的数据平面代理配置的属性。 DataPlaneProxyProperties
disableLocalAuth 禁用除 AAD 身份验证以外的所有身份验证方法。 bool
enablePurgeProtection 指定是否为此配置存储启用针对清除的保护的属性。 bool
加密 配置存储的加密设置。 EncryptionProperties
publicNetworkAccess 启用专用终结点时,控制来自公用网络的数据平面流量的权限。 “Disabled”
“Enabled”
softDeleteRetentionInDays 软删除配置存储时保留的时间(以天为单位)。 int

DataPlaneProxyProperties

名字 描述 价值
authenticationMode 数据平面代理身份验证模式。 此属性管理对数据平面资源的请求的身份验证模式。 “Local”
“直通”
privateLinkDelegation 数据平面代理专用链接委派。 当数据平面资源需要专用链接时,此属性管理是否允许来自委托的 Azure 资源管理器 (ARM) 专用链接的请求。 “Disabled”
“Enabled”

EncryptionProperties

名字 描述 价值
keyVaultProperties Key Vault 属性。 KeyVaultProperties

KeyVaultProperties

名字 描述 价值
identityClientId 将用于访问密钥保管库的标识的客户端 ID。 字符串
keyIdentifier 用于加密数据的密钥保管库密钥的 URI。 字符串

Microsoft.AppConfiguration/configurationStores

名字 描述 价值
apiVersion API 版本 '2024-05-01'
身份 托管标识信息(如果已配置)。 ResourceIdentity
位置 资源所在的地理位置 string (必需)
名字 资源名称 字符串

约束:
最小长度 = 5
最大长度 = 50
模式 = ^[a-zA-Z0-9_-]*$ (必需)
性能 配置存储区的属性。 ConfigurationStoreProperties
sku 配置存储的 SKU。 Sku(必需)
标签 资源标记 标记名称和值的字典。 请参阅模板 中的 标记
类型 资源类型 “Microsoft.AppConfiguration/configurationStores”

ResourceIdentity

名字 描述 价值
类型 使用的托管标识的类型。 类型“SystemAssigned,UserAssigned”包括隐式创建的标识和一组用户分配的标识。 类型“None”将删除任何标识。 “None”
“SystemAssigned”
“SystemAssigned,UserAssigned”
“UserAssigned”
userAssignedIdentities 与资源关联的用户分配标识的列表。 用户分配的标识字典密钥将为 ARM 资源 ID,格式为“/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}”。 ResourceIdentityUserAssignedIdentities

ResourceIdentityUserAssignedIdentities

名字 描述 价值

Sku

名字 描述 价值
名字 配置存储的 SKU 名称。 string (必需)

TrackedResourceTags

名字 描述 价值

UserIdentity

名字 描述 价值

快速入门模板

以下快速入门模板部署此资源类型。

模板 描述
应用配置键值

部署到 Azure
此模板创建一个新的 Azure 应用配置存储,其中包含由复制函数控制的三个键值。
使用 VM 应用配置

部署到 Azure
此模板引用现有配置存储中的现有键值配置,并使用检索的值设置模板创建的资源的属性。
创建应用配置存储

部署到 Azure
此模板创建 Azure 应用配置存储。
使用功能标志创建应用配置存储

部署到 Azure
此模板创建一个新的 Azure 应用配置存储区,其中包含一个功能标志。
使用功能标志创建应用配置存储

部署到 Azure
此模板使用一个 Key Vault 引用创建新的 Azure 应用配置存储。
使用输出创建应用配置存储

部署到 Azure
此模板使用两个键值创建新的 Azure 应用配置存储。

Terraform (AzAPI 提供程序)资源定义

可以使用目标操作部署 configurationStores 资源类型:

  • 资源组

有关每个 API 版本中已更改属性的列表,请参阅 更改日志

资源格式

若要创建 Microsoft.AppConfiguration/configurationStores 资源,请将以下 Terraform 添加到模板。

resource "azapi_resource" "symbolicname" {
  type = "Microsoft.AppConfiguration/configurationStores@2024-05-01"
  name = "string"
  identity = {
    type = "string"
    userAssignedIdentities = {
      {customized property} = {
      }
    }
  }
  location = "string"
  sku = {
    name = "string"
  }
  tags = {
    {customized property} = "string"
  }
  body = jsonencode({
    properties = {
      createMode = "string"
      dataPlaneProxy = {
        authenticationMode = "string"
        privateLinkDelegation = "string"
      }
      disableLocalAuth = bool
      enablePurgeProtection = bool
      encryption = {
        keyVaultProperties = {
          identityClientId = "string"
          keyIdentifier = "string"
        }
      }
      publicNetworkAccess = "string"
      softDeleteRetentionInDays = int
    }
  })
}

属性值

ConfigurationStoreProperties

名字 描述 价值
createMode 指示是否需要恢复配置存储。 “Default”
“恢复”
dataPlaneProxy 指定 Azure 资源管理器(ARM)的数据平面代理配置的属性。 DataPlaneProxyProperties
disableLocalAuth 禁用除 AAD 身份验证以外的所有身份验证方法。 bool
enablePurgeProtection 指定是否为此配置存储启用针对清除的保护的属性。 bool
加密 配置存储的加密设置。 EncryptionProperties
publicNetworkAccess 启用专用终结点时,控制来自公用网络的数据平面流量的权限。 “Disabled”
“Enabled”
softDeleteRetentionInDays 软删除配置存储时保留的时间(以天为单位)。 int

DataPlaneProxyProperties

名字 描述 价值
authenticationMode 数据平面代理身份验证模式。 此属性管理对数据平面资源的请求的身份验证模式。 “Local”
“直通”
privateLinkDelegation 数据平面代理专用链接委派。 当数据平面资源需要专用链接时,此属性管理是否允许来自委托的 Azure 资源管理器 (ARM) 专用链接的请求。 “Disabled”
“Enabled”

EncryptionProperties

名字 描述 价值
keyVaultProperties Key Vault 属性。 KeyVaultProperties

KeyVaultProperties

名字 描述 价值
identityClientId 将用于访问密钥保管库的标识的客户端 ID。 字符串
keyIdentifier 用于加密数据的密钥保管库密钥的 URI。 字符串

Microsoft.AppConfiguration/configurationStores

名字 描述 价值
身份 托管标识信息(如果已配置)。 ResourceIdentity
位置 资源所在的地理位置 string (必需)
名字 资源名称 字符串

约束:
最小长度 = 5
最大长度 = 50
模式 = ^[a-zA-Z0-9_-]*$ (必需)
性能 配置存储区的属性。 ConfigurationStoreProperties
sku 配置存储的 SKU。 Sku(必需)
标签 资源标记 标记名称和值的字典。
类型 资源类型 “Microsoft.AppConfiguration/configurationStores@2024-05-01”

ResourceIdentity

名字 描述 价值
类型 使用的托管标识的类型。 类型“SystemAssigned,UserAssigned”包括隐式创建的标识和一组用户分配的标识。 类型“None”将删除任何标识。 “None”
“SystemAssigned”
“SystemAssigned,UserAssigned”
“UserAssigned”
userAssignedIdentities 与资源关联的用户分配标识的列表。 用户分配的标识字典密钥将为 ARM 资源 ID,格式为“/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}”。 ResourceIdentityUserAssignedIdentities

ResourceIdentityUserAssignedIdentities

名字 描述 价值

Sku

名字 描述 价值
名字 配置存储的 SKU 名称。 string (必需)

TrackedResourceTags

名字 描述 价值

UserIdentity

名字 描述 价值