Skip to main content

jobs_secrets

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

Overview

Namejobs_secrets
TypeResource
Idazure.container_apps.jobs_secrets

Fields

The following fields are returned by SELECT queries:

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

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
listselectsubscriptionId, resourceGroupName, jobName

Parameters

Parameters can be passed in the WHERE clause of a query. Check the Methods section to see which parameters are required or optional for each operation.

NameDatatypeDescription
jobNamestringJob Name
resourceGroupNamestringThe name of the resource group. The name is case insensitive.
subscriptionIdstring (uuid)The ID of the target subscription. The value must be an UUID.

SELECT examples

OK

SELECT
name,
identity,
keyVaultUrl,
value
FROM azure.container_apps.jobs_secrets
WHERE subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND jobName = '{{ jobName }}' -- required
;