Skip to content

Commit

Permalink
created main.tf
Browse files Browse the repository at this point in the history
  • Loading branch information
vikas99341 authored Jan 13, 2023
1 parent 91de357 commit 68b5118
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions s3-backend/main.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
resource "aws_instance" "myec2" {
ami = "ami-0cca134ec43cf708f"
instance_type = "t2.micro"
}

resource "aws_eip" "lb" {
vpc = true
}

resource "time_sleep" "wait_70_sec" {
create_duration = "70s"
}

0 comments on commit 68b5118

Please sign in to comment.