Skip to content

Instantly share code, notes, and snippets.

@burythehammer
Last active March 17, 2017 13:09
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 burythehammer/c4693bdbeb4a0ab58e80d2c82582d9d6 to your computer and use it in GitHub Desktop.
Save burythehammer/c4693bdbeb4a0ab58e80d2c82582d9d6 to your computer and use it in GitHub Desktop.
Example terraform code for provisioning 3 aws centos nodes
resource "aws_instance" "etcd-node" {
count = 3
ami = "ami-7abd0209"
instance_type = "t2.micro"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment