Created
April 26, 2017 07:31
-
-
Save koenighotze/e0312b7836c1b8bb27b2786e81ec4f19 to your computer and use it in GitHub Desktop.
terraform simple resource
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" "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