Skip to content

Commit

Permalink
Update users
Browse files Browse the repository at this point in the history
  • Loading branch information
Eduard Keilholz committed Sep 27, 2024
1 parent b81dc01 commit a79f4d6
Showing 1 changed file with 10 additions and 9 deletions.
19 changes: 10 additions & 9 deletions infrastructure/resources.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -36,10 +36,12 @@ resource storageAccountTableService 'Microsoft.Storage/storageAccounts/tableServ
name: 'default'
parent: storageAccount
}
resource storageAccountTable 'Microsoft.Storage/storageAccounts/tableServices/tables@2021-09-01' = [for table in storageAccountTables: {
name: table
parent: storageAccountTableService
}]
resource storageAccountTable 'Microsoft.Storage/storageAccounts/tableServices/tables@2021-09-01' = [
for table in storageAccountTables: {
name: table
parent: storageAccountTableService
}
]

module storageAccountConfigurationValue 'configuration-value.bicep' = {
name: 'storageAccountConfigurationValue'
Expand Down Expand Up @@ -85,8 +87,8 @@ resource apiContainerApp 'Microsoft.App/containerApps@2023-08-01-preview' = {
corsPolicy: {
allowedOrigins: corsHostnames
allowCredentials: true
allowedHeaders: [ '*' ]
allowedMethods: [ '*' ]
allowedHeaders: ['*']
allowedMethods: ['*']
maxAge: 0
}
}
Expand All @@ -97,15 +99,15 @@ resource apiContainerApp 'Microsoft.App/containerApps@2023-08-01-preview' = {
}
secrets: [
{
name: 'container-registry-password'
name: 'containerregistrypassword'
value: acrPassword
}
]
registries: [
{
server: acrLoginServer
username: acrUsername
passwordSecretRef: 'container-registry-password'
passwordSecretRef: 'containerregistrypassword'
}
]
}
Expand All @@ -129,7 +131,6 @@ resource apiContainerApp 'Microsoft.App/containerApps@2023-08-01-preview' = {
value: appConfiguration.properties.endpoint
}
]

}
]
scale: {
Expand Down

0 comments on commit a79f4d6

Please # to comment.