Skip to content

Instantly share code, notes, and snippets.

@scarolan
Last active December 30, 2015 17:24
Show Gist options
  • Save scarolan/60ae8a2d5f2a8fdb5c55 to your computer and use it in GitHub Desktop.
Save scarolan/60ae8a2d5f2a8fdb5c55 to your computer and use it in GitHub Desktop.
variable "region" { }
provider "aws" {
region = "${var.region}"
}
resource "aws_instance" "example" {
ami = "ami-d05e75b8"
instance_type = "t2.micro"
}
aws_access_key = ""
aws_secret_key = ""
region = "us-east-1"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment