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/managedenvironments to 2024-03-01 - autoclosed #104

Closed
Closed
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/shared/container-app-service.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ param serviceType string
@description('The target port for the container')
param targetPort int

resource containerAppsEnvironment 'Microsoft.App/managedEnvironments@2023-05-01' existing = {
resource containerAppsEnvironment 'Microsoft.App/managedEnvironments@2024-03-01' existing = {
name: containerAppsEnvironmentName
}

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 @@ -67,7 +67,7 @@ param serviceType string = ''
@description('The target port for the container')
param targetPort int = 80

resource containerAppsEnvironment 'Microsoft.App/managedEnvironments@2023-05-01' existing = {
resource containerAppsEnvironment 'Microsoft.App/managedEnvironments@2024-03-01' existing = {
name: containerAppsEnvironmentName
}

Expand Down
2 changes: 1 addition & 1 deletion infra/shared/container-apps-environment.bicep
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ param logAnalyticsWorkspaceName string
@description('Name of the Application Insights resource')
param applicationInsightsName string

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