Skip to content

Instantly share code, notes, and snippets.

@andrewmatveychuk
Created May 14, 2026 17:51
Show Gist options
  • Select an option

  • Save andrewmatveychuk/bcb90d429ef32ca1455f3a7fea55f54d to your computer and use it in GitHub Desktop.

Select an option

Save andrewmatveychuk/bcb90d429ef32ca1455f3a7fea55f54d to your computer and use it in GitHub Desktop.
Bicep snippet for configuring Container App secrets
// ...
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