dnssecs
Creates, updates, deletes, gets or lists a dnssecs resource.
Overview
| Name | dnssecs |
| Type | Resource |
| Id | aws.route53.dnssecs |
Fields
The following fields are returned by SELECT queries:
- get_dnssec
| Name | Datatype | Description |
|---|---|---|
key_signing_keys | string | The key-signing keys (KSKs) in your account. |
status | string | A string representing the status of DNSSEC. |
Methods
The following methods are available for this resource:
| Name | Accessible by | Required Params | Optional Params | Description |
|---|---|---|---|---|
get_dnssec | select | id, region | Returns information about DNSSEC for a specific hosted zone, including the key-signing keys (KSKs) in the hosted zone. |
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 |
|---|---|---|
id | string | A unique string used to identify a hosted zone. |
region | string | AWS region (default: us-east-1) |
SELECT examples
- get_dnssec
Returns information about DNSSEC for a specific hosted zone, including the key-signing keys (KSKs) in the hosted zone.
SELECT
key_signing_keys,
status
FROM aws.route53.dnssecs
WHERE id = '{{ id }}' -- required
AND region = '{{ region }}' -- required
;