Last active
April 14, 2017 14:05
-
-
Save Kuchitama/8305c87e39acddb73ee5f31d87678677 to your computer and use it in GitHub Desktop.
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" { | |
access_key = "ACCESS_KEY_HERE" | |
secret_key = "SECRET_KEY_HERE" | |
region = "us-east-1" | |
} | |
resource "aws_instance" "example" { | |
ami = "ami-27ce4931" | |
instance_type = "t1.micro" | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment