Files
eShopOnWeb/infra/core/host/appservice-config-cosmos.bicep
2022-10-25 14:06:09 +08:00

19 lines
699 B
Bicep

param appServiceName string
param cosmosConnectionStringKey string = ''
param cosmosDatabaseName string = ''
param cosmosEndpoint string = ''
module appServiceConfigCosmosSettings 'appservice-config-union.bicep' = {
name: '${appServiceName}-appservice-config-cosmos-settings'
params: {
appServiceName: appServiceName
configName: 'appsettings'
currentConfigProperties: list(resourceId('Microsoft.Web/sites/config', appServiceName, 'appsettings'), '2022-03-01').properties
additionalConfigProperties: {
AZURE_COSMOS_CONNECTION_STRING_KEY: cosmosConnectionStringKey
AZURE_COSMOS_DATABASE_NAME: cosmosDatabaseName
AZURE_COSMOS_ENDPOINT: cosmosEndpoint
}
}
}