Skip to main content

secrets

Creates, updates, deletes, gets or lists a secrets resource.

Overview

Namesecrets
TypeResource
Idazure.container_apps.secrets

Fields

NameDatatypeDescription
namestringSecret Name.
identitystringResource ID of a managed identity to authenticate with Azure Key Vault, or System to use a system-assigned identity.
keyVaultUrlstringAzure Key Vault URL pointing to the secret referenced by the container app.
valuestringSecret Value.

Methods

NameAccessible byRequired ParamsDescription
listSELECTcontainerAppName, resourceGroupName, subscriptionId

SELECT examples

SELECT
name,
identity,
keyVaultUrl,
value
FROM azure.container_apps.secrets
WHERE containerAppName = '{{ containerAppName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';