Created
May 14, 2026 17:51
-
-
Save andrewmatveychuk/bcb90d429ef32ca1455f3a7fea55f54d to your computer and use it in GitHub Desktop.
Bicep snippet for configuring Container App secrets
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| // ... | |
| containerSecrets: [ | |
| { | |
| name: 'database-password' // This should be lower case alphanumeric characters, '-', and must start and end with an alphanumeric character | |
| keyVaultUrl: keyVault.outputs.secretUri // Your secret URI | |
| identity: managedIdentity.outputs.id // The identity to use to access the secret | |
| } | |
| ] | |
| // ... |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment