Skip to content

Instantly share code, notes, and snippets.

@koenighotze
Created April 26, 2017 13:18
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 koenighotze/fdb630f548f43f3d9c06de4be8e40b1b to your computer and use it in GitHub Desktop.
Save koenighotze/fdb630f548f43f3d9c06de4be8e40b1b to your computer and use it in GitHub Desktop.
01_basic_ec2_instance
provider "aws" {
region = "eu-west-1"
}
resource "aws_instance" "stage1" {
instance_type = "t2.micro"
ami = "ami-a8d2d7ce"
tags {
Name = "stage1"
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment