Skip to content

Commit

Permalink
initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
hazzardr committed Feb 5, 2024
0 parents commit 3eece59
Show file tree
Hide file tree
Showing 3 changed files with 37 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.terraform/
24 changes: 24 additions & 0 deletions .terraform.lock.hcl

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

12 changes: 12 additions & 0 deletions main.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
provider "aws" {
region = "us-east-2"
}

resource "aws_instance" "tf_example" {
ami = "ami-0fb653ca2d3203ac1" # Ubuntu 20.04
instance_type = "t2.micro"

tags = {
Name = "tf-example"
}
}

0 comments on commit 3eece59

Please sign in to comment.