Skip to main content

acme_external_account_binding_credentials

Creates, updates, deletes, gets or lists an acme_external_account_binding_credentials resource.

Overview

Nameacme_external_account_binding_credentials
TypeResource
Idaws.acm.acme_external_account_binding_credentials

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
key_idstringThe key identifier for the external account binding credentials.
mac_keystringThe MAC key for the external account binding credentials.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_acme_external_account_binding_credentialsselectregionRetrieves the key ID and MAC key credentials for an external account binding. These credentials are used by ACME clients during account registration to bind to the endpoint.

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
regionstringAWS region (default: us-east-1)

SELECT examples

Retrieves the key ID and MAC key credentials for an external account binding. These credentials are used by ACME clients during account registration to bind to the endpoint.

SELECT
key_id,
mac_key
FROM aws.acm.acme_external_account_binding_credentials
WHERE region = '{{ region }}' -- required
;