first steps

This commit is contained in:
Ubuntu
2016-10-07 09:24:47 +00:00
parent 117926fcf5
commit 95933c5172
2 changed files with 11 additions and 0 deletions
+10
View File
@@ -0,0 +1,10 @@
provider "aws" {
access_key = "ACCESS_KEY_HERE"
secret_key = "SECRET_KEY_HERE"
region = "us-east-1"
}
resource "aws_instance" "example" {
ami = "ami-0d729a60"
instance_type = "t2.micro"
}