scenarios/aca-internal/bicep/modules/04-container-apps-environment/deploy.aca-environment.parameters.jsonc (47 lines of code) (raw):
{
"$schema": "https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#",
"contentVersion": "1.0.0.0",
"parameters": {
// The name of the workload that is being deployed. Up to 10 characters long. This wil be used as part of the naming convention (i.e. as defined here: https://learn.microsoft.com/azure/cloud-adoption-framework/ready/azure-best-practices/resource-naming)
"workloadName": {
"value": "lzaaca"
},
//The name of the environment (e.g. "dev", "test", "prod", "preprod", "staging", "uat", "dr", "qa"). Up to 8 characters long.
"environment": {
"value": "dev"
},
// Should a dedicated workload profile called default be provisioned?
"dedicatedWorkloadProfile": {
"value": false
},
"tags": {
"value": {}
},
// Replace with the resource ID of the hub virtual network - required to link the privateDNS zone to the Hub network as well
"hubVNetId": {
"value": "<HUB_VNET_RESOURCE_ID>"
},
// If you want to deploy Application Insights, set this to true
"enableApplicationInsights": {
"value": false
},
// If you use Dapr, you can setup Dapr telemetry by setting this to true and enableApplicationInsights to true
"enableDaprInstrumentation": {
"value": false
},
// Replace with the name of the spoke VNet
"spokeVNetName": {
"value": "<SPOKE_VNET_NAME>"
},
"spokeInfraSubnetName": {
"value": "snet-infra"
},
"enableTelemetry": {
"value": true
},
// Optional. Resource ID of the diagnostic log analytics workspace. If left empty, no diagnostics settings will be defined.
"logAnalyticsWorkspaceId": {
"value": ""
}
}
}