Skip to content

Instantly share code, notes, and snippets.

@koenighotze
Created April 26, 2017 07:31
Show Gist options
  • Save koenighotze/e0312b7836c1b8bb27b2786e81ec4f19 to your computer and use it in GitHub Desktop.
Save koenighotze/e0312b7836c1b8bb27b2786e81ec4f19 to your computer and use it in GitHub Desktop.
terraform simple resource
provider "aws" {
region = "eu-west-1"
}
resource "aws_instance" "simple" {
instance_type = "t2.micro"
ami = "ami-a8d2d7ce"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment