Skip to content

Instantly share code, notes, and snippets.

@mooyoul
Last active December 18, 2016 19:21
Show Gist options
  • Select an option

  • Save mooyoul/5f0221b2b5cf637834e4685f71f24b1f to your computer and use it in GitHub Desktop.

Select an option

Save mooyoul/5f0221b2b5cf637834e4685f71f24b1f to your computer and use it in GitHub Desktop.
Terraform 101
resource "digitalocean_droplet" "web" {
name = "tf-web"
size = "512mb"
image = "centos-5-8-x32"
region = "sfo1"
}
resource "dnsimple_record" "hello" {
domain = "example.com"
name = "test"
value = "${digitalocean_droplet.web.ipv4_address}"
type = "A"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment