Skip to content

Commit

Permalink
Initial import
Browse files Browse the repository at this point in the history
  • Loading branch information
topfunky committed Dec 2, 2017
0 parents commit b576072
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 0 deletions.
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Terraform Intro Demo

Before and after code for a _Terraform Introduction_ class.
9 changes: 9 additions & 0 deletions main.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
provider "aws" {
access_key = ""
secret_key = ""
region = ""
}

resource "aws_instance" "web" {
# ...
}

0 comments on commit b576072

Please sign in to comment.