-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feature - create DS record for dnssec (#31)
* major overhaul of the route53 dnssec module * Continuous Integration - terraform fmt and terraform-docs * toset for the record * fromset to a list * changing the input to be dnskey_record from ds_record * temporarily removing the DS record * Continuous Integration - terraform fmt and terraform-docs * cleaned up the useless resource for the DS record * updated the readme with details on how to use the module to set DNSSEC * Continuous Integration - terraform fmt and terraform-docs * updated comment headers --------- Co-authored-by: zachreborn <[email protected]>
- Loading branch information
1 parent
177b7f4
commit b460840
Showing
4 changed files
with
89 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,39 +1,39 @@ | ||
output "digest_algorithm_mnemonic" { | ||
value = aws_route53_key_signing_key.this.digest_algorithm_mnemonic | ||
value = aws_route53_key_signing_key.dnssec.digest_algorithm_mnemonic | ||
} | ||
|
||
output "digest_algorithm_type" { | ||
value = aws_route53_key_signing_key.this.digest_algorithm_type | ||
value = aws_route53_key_signing_key.dnssec.digest_algorithm_type | ||
} | ||
|
||
output "digest_value" { | ||
value = aws_route53_key_signing_key.this.digest_value | ||
value = aws_route53_key_signing_key.dnssec.digest_value | ||
} | ||
|
||
output "dnskey_record" { | ||
value = aws_route53_key_signing_key.this.dnskey_record | ||
value = aws_route53_key_signing_key.dnssec.dnskey_record | ||
} | ||
|
||
output "ds_record" { | ||
value = aws_route53_key_signing_key.this.ds_record | ||
value = aws_route53_key_signing_key.dnssec.ds_record | ||
} | ||
|
||
output "flag" { | ||
value = aws_route53_key_signing_key.this.flag | ||
value = aws_route53_key_signing_key.dnssec.flag | ||
} | ||
|
||
output "key_tag" { | ||
value = aws_route53_key_signing_key.this.key_tag | ||
value = aws_route53_key_signing_key.dnssec.key_tag | ||
} | ||
|
||
output "public_key" { | ||
value = aws_route53_key_signing_key.this.public_key | ||
value = aws_route53_key_signing_key.dnssec.public_key | ||
} | ||
|
||
output "signing_algorithm_mnemonic" { | ||
value = aws_route53_key_signing_key.this.signing_algorithm_mnemonic | ||
value = aws_route53_key_signing_key.dnssec.signing_algorithm_mnemonic | ||
} | ||
|
||
output "signing_algorithm_type" { | ||
value = aws_route53_key_signing_key.this.signing_algorithm_type | ||
value = aws_route53_key_signing_key.dnssec.signing_algorithm_type | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters