我仍然不熟悉 azure bicep,但我真的很喜欢微软到目前为止所做的事情。
我仍在学习语法和它的基础,但我被困在这一点上。
我正在尝试做的是复制存储帐户的创建并设置一些配置,例如minimum_tls_version
DeleteRetentionPolicy
等。
我试图在一个循环中创建它,所以我可以创建多个具有相同配置的存储。
到目前为止,我已经到了这一点。
param storageAccounts array = [
'storage2'
]
resource storage_Accounts 'Microsoft.Storage/storageAccounts@2021-04-01' = [ for storageName in storageAccounts :{
name: [storageName]
location: 'westeurope'
sku: {
name: 'Standard_RAGRS'
tier: 'Standard'
}
kind: 'StorageV2'
properties: {
allowCrossTenantReplication: true
minimumTlsVersion: 'TLS1_2'
allowBlobPublicAccess: false
allowSharedKeyAccess: true
networkAcls: {
bypass: 'AzureServices'
virtualNetworkRules: []
ipRules: []
defaultAction: 'Allow'
}
supportsHttpsTrafficOnly: true
encryption: {
services: {
file: {
keyType: 'Account'
enabled: true
}
blob: {
keyType: 'Account'
enabled: true
}
}
keySource: 'Microsoft.Storage'
}
accessTier: 'Hot'
}
}]
resource storage_Accounts_name_default 'Microsoft.Storage/storageAccounts/blobServices@2021-04-01' = [ for storageName in storageAccounts :{
parent: storage_Accounts
name: [storageName]
properties: {
changeFeed: {
enabled: false
}
restorePolicy: {
enabled: false
}
containerDeleteRetentionPolicy: {
enabled: true
days: 7
}
cors: {
corsRules: []
}
deleteRetentionPolicy: {
enabled: true
days: 30
}
isVersioningEnabled: true
}
}]
此时,在最后一行}]
我收到以下错误:
Expected the "}" character at this location.bicep(BCP018)
Expected the "]" character at this location.bicep(BCP018)
我不明白为什么我会收到这个语法错误,所有这些}]
似乎都是正确的。
一个认为我不明白的是这个。当我手动创建存储帐户时,策略配置Soft delete etc
是在存储帐户级别进行的。但是按照文档,此配置是在 single 完成的blob storage
。
谁能给我一个关于这个和最好的方法的解释?
非常感谢您提供的任何帮助