Skip to content

Instantly share code, notes, and snippets.

@elliotforbes
Created July 3, 2018 14:12
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 elliotforbes/299dbaad6838c5b65b0590ea3191db1b to your computer and use it in GitHub Desktop.
Save elliotforbes/299dbaad6838c5b65b0590ea3191db1b to your computer and use it in GitHub Desktop.
provider "aws" {
access_key = "ACCESS_KEY_HERE"
secret_key = "SECRET_KEY_HERE"
region = "us-east-1"
}
resource "aws_instance" "example" {
ami = "ami-2757f631"
instance_type = "t2.micro"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment