Skip to content

Commit

Permalink
Reset change
Browse files Browse the repository at this point in the history
  • Loading branch information
oZakari committed Feb 3, 2025
1 parent 5ce5c64 commit f8a514d
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions avm/res/app/container-app/main.bicep
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
metadata name = 'Container Apps'
metadata description = 'This module deploys a Container App.'
metadata owner = 'Azure/module-maintainers'

@description('Required. Name of the Container App.')
param name string
Expand Down Expand Up @@ -334,7 +333,7 @@ output resourceGroupName string = resourceGroup().name
output name string = containerApp.name

@description('The principal ID of the system assigned identity.')
output systemAssignedMIPrincipalId string = containerApp.?identity.?principalId ?? ''
output systemAssignedMIPrincipalId string? = containerApp.?identity.?principalId

@description('The location the resource was deployed into.')
output location string = containerApp.location
Expand Down

0 comments on commit f8a514d

Please sign in to comment.