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
The following fields are returned by SELECT
queries:
- list
Name | Datatype | Description |
---|---|---|
expires | string (date-time) | Token expiration date. |
token | string | Authentication token. |
Methods
The following methods are available for this resource:
Name | Accessible by | Required Params | Optional Params | Description |
---|---|---|---|---|
list | select | subscriptionId , resourceGroupName , builderName , buildName | Gets the token used to connect to the endpoint where source code can be uploaded for a build. |
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.
Name | Datatype | Description |
---|---|---|
buildName | string | The name of a build. |
builderName | string | The name of the builder. |
resourceGroupName | string | The name of the resource group. The name is case insensitive. |
subscriptionId | string (uuid) | The ID of the target subscription. The value must be an UUID. |
SELECT
examples
- list
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 subscriptionId = '{{ subscriptionId }}' -- required
AND resourceGroupName = '{{ resourceGroupName }}' -- required
AND builderName = '{{ builderName }}' -- required
AND buildName = '{{ buildName }}' -- required
;