9 lines
231 B
Bicep
9 lines
231 B
Bicep
param exists bool
|
|
param name string
|
|
|
|
resource existingApp 'Microsoft.App/containerApps@2023-05-02-preview' existing = if (exists) {
|
|
name: name
|
|
}
|
|
|
|
output containers array = exists ? existingApp.properties.template.containers : []
|