Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save tad124737337/655d6a0a9f8f5840b2973f30cee98d8d to your computer and use it in GitHub Desktop.
Save tad124737337/655d6a0a9f8f5840b2973f30cee98d8d to your computer and use it in GitHub Desktop.
resource "aws_route53_zone" "community-mcws-mozilla-se" {
name = "mozilla.se"
}
resource "aws_route53_record" "community-mcws-mozilla-se-root" {
zone_id = "${aws_route53_zone.community-mcws-mozilla-se.zone_id}"
name = "mozilla.se"
type = "A"
ttl = "300"
records = ["108.59.84.193"]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment