Created
April 26, 2017 13:18
-
-
Save koenighotze/fdb630f548f43f3d9c06de4be8e40b1b to your computer and use it in GitHub Desktop.
01_basic_ec2_instance
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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