build_auth_tokens
Creates, updates, deletes, gets or lists a build_auth_tokens
resource.
Overview
Name | build_auth_tokens |
Type | Resource |
Id | azure.container_apps.build_auth_tokens |
Fields
Name | Datatype | Description |
---|---|---|
expires | string | Token expiration date. |
token | string | Authentication token. |
Methods
Name | Accessible by | Required Params | Description |
---|---|---|---|
list | SELECT | buildName, builderName, resourceGroupName, subscriptionId | Gets the token used to connect to the endpoint where source code can be uploaded for a build. |
SELECT
examples
Gets the token used to connect to the endpoint where source code can be uploaded for a build.
SELECT
expires,
token
FROM azure.container_apps.build_auth_tokens
WHERE buildName = '{{ buildName }}'
AND builderName = '{{ builderName }}'
AND resourceGroupName = '{{ resourceGroupName }}'
AND subscriptionId = '{{ subscriptionId }}';