Last active
January 14, 2019 17:15
-
-
Save lawrencejones/657874acb650ea0f4f4809c9c9f8c3d6 to your computer and use it in GitHub Desktop.
Example of exporting Route53
This file contains hidden or 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
λ (lab) ~> aws route53 list-resource-record-sets --hosted-zone-id Z1B93ASNBC3G25 | |
{ | |
"ResourceRecordSets": [ | |
..., | |
{ | |
"Name": "something.directli.co.uk.", | |
"Type": "A", | |
"TTL": 300, | |
"ResourceRecords": [ | |
{ | |
"Value": "1.2.3.4" | |
} | |
] | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment