Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(deps): update resource microsoft.app/containerapps to 2024-03-01 #103

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion infra/app/api.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ resource keyVault 'Microsoft.KeyVault/vaults@2022-07-01' existing = {
name: keyVaultName
}

resource db 'Microsoft.App/containerApps@2023-05-01' existing = {
resource db 'Microsoft.App/containerApps@2024-03-01' existing = {
name: dbServiceName
}

Expand Down
2 changes: 1 addition & 1 deletion infra/app/data-manager.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ resource keyVault 'Microsoft.KeyVault/vaults@2022-07-01' existing = {
name: keyVaultName
}

resource db 'Microsoft.App/containerApps@2023-05-01' existing = {
resource db 'Microsoft.App/containerApps@2024-03-01' existing = {
name: dbServiceName
}

Expand Down
2 changes: 1 addition & 1 deletion infra/shared/container-app-service.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ resource containerAppsEnvironment 'Microsoft.App/managedEnvironments@2023-05-01'
name: containerAppsEnvironmentName
}

resource app 'Microsoft.App/containerApps@2023-05-01' = {
resource app 'Microsoft.App/containerApps@2024-03-01' = {
name: name
location: location
tags: tags
Expand Down
2 changes: 1 addition & 1 deletion infra/shared/container-app-upsert.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ param serviceType string = ''
@description('The target port for the container')
param targetPort int = 80

resource existingApp 'Microsoft.App/containerApps@2023-05-01' existing = if (exists) {
resource existingApp 'Microsoft.App/containerApps@2024-03-01' existing = if (exists) {
name: name
}

Expand Down
2 changes: 1 addition & 1 deletion infra/shared/container-app.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ resource userIdentity 'Microsoft.ManagedIdentity/userAssignedIdentities@2023-01-
name: identityName
}

resource app 'Microsoft.App/containerApps@2023-05-01' = {
resource app 'Microsoft.App/containerApps@2024-03-01' = {
name: name
location: location
tags: tags
Expand Down