Skip to main content

build_auth_tokens

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

Overview

Namebuild_auth_tokens
TypeResource
Idazure.container_apps.build_auth_tokens

Fields

NameDatatypeDescription
expiresstringToken expiration date.
tokenstringAuthentication token.

Methods

NameAccessible byRequired ParamsDescription
listSELECTbuildName, builderName, resourceGroupName, subscriptionIdGets 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 }}';