Skip to main content

dnssecs

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

Overview

Namednssecs
TypeResource
Idaws.route53.dnssecs

Fields

The following fields are returned by SELECT queries:

NameDatatypeDescription
key_signing_keysstringThe key-signing keys (KSKs) in your account.
statusstringA string representing the status of DNSSEC.

Methods

The following methods are available for this resource:

NameAccessible byRequired ParamsOptional ParamsDescription
get_dnssecselectid, regionReturns 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.

NameDatatypeDescription
idstringA unique string used to identify a hosted zone.
regionstringAWS region (default: us-east-1)

SELECT examples

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
;