acme_external_account_binding_credentials
Creates, updates, deletes, gets or lists an acme_external_account_binding_credentials resource.
Overview
| Name | acme_external_account_binding_credentials |
| Type | Resource |
| Id | aws.acm.acme_external_account_binding_credentials |
Fields
The following fields are returned by SELECT queries:
- get_acme_external_account_binding_credentials
| Name | Datatype | Description |
|---|---|---|
key_id | string | The key identifier for the external account binding credentials. |
mac_key | string | The MAC key for the external account binding credentials. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_acme_external_account_binding_credentials | select | region | 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. |
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 |
|---|---|---|
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_acme_external_account_binding_credentials
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
;