19 lines
699 B
Bicep
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
|
|
}
|
|
}
|
|
}
|