diff --git a/aca-revision-and-traffic-management/modules/aca-common.bicep b/aca-revision-and-traffic-management/modules/aca-common.bicep index 043c29d..6e028c8 100644 --- a/aca-revision-and-traffic-management/modules/aca-common.bicep +++ b/aca-revision-and-traffic-management/modules/aca-common.bicep @@ -4,7 +4,7 @@ param managedIdentityId string param tags object resource containerAppsEnvironment 'Microsoft.App/managedEnvironments@2023-11-02-preview' = { - name: 'cae-aca-helloworld' + name: 'cae-aca-hello-world' location: location identity: { type: 'UserAssigned' diff --git a/aca-revision-and-traffic-management/modules/aca-public-apps.bicep b/aca-revision-and-traffic-management/modules/aca-public-apps.bicep index ccd6b7d..b158121 100644 --- a/aca-revision-and-traffic-management/modules/aca-public-apps.bicep +++ b/aca-revision-and-traffic-management/modules/aca-public-apps.bicep @@ -5,7 +5,7 @@ param tags object param trafficDistribution array resource helloworld 'Microsoft.App/containerApps@2023-05-02-preview' = { - name: 'aca-helloworld' + name: 'aca-hello-world' location: location tags: tags identity: { @@ -31,7 +31,7 @@ resource helloworld 'Microsoft.App/containerApps@2023-05-02-preview' = { containers: [ { image: 'mcr.microsoft.com/azuredocs/aks-helloworld:v1' - name: 'aca-helloworld' + name: 'aca-hello-world' resources: { cpu: json('0.5') memory: '1.0Gi'