Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@Kuchitama
Last active April 14, 2017 14:05
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 Kuchitama/8305c87e39acddb73ee5f31d87678677 to your computer and use it in GitHub Desktop.
Save Kuchitama/8305c87e39acddb73ee5f31d87678677 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-27ce4931"
instance_type = "t1.micro"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment