Skip to content

Instantly share code, notes, and snippets.

@lawrencejones
Last active January 14, 2019 17:15
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save lawrencejones/657874acb650ea0f4f4809c9c9f8c3d6 to your computer and use it in GitHub Desktop.
Save lawrencejones/657874acb650ea0f4f4809c9c9f8c3d6 to your computer and use it in GitHub Desktop.
Example of exporting Route53
λ (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