Skip to content

Commit

Permalink
New Version
Browse files Browse the repository at this point in the history
  • Loading branch information
nimeshgarg committed Jun 2, 2024
1 parent ce80326 commit 36f2c4e
Show file tree
Hide file tree
Showing 4 changed files with 45 additions and 17 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -41,4 +41,7 @@ data/
instance/

# ignore __pycache__ folder
__pycache__/
__pycache__/

# Nimesh Script
mine.sh
51 changes: 35 additions & 16 deletions .terraform.lock.hcl

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

5 changes: 5 additions & 0 deletions main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,11 @@ provider "aws" {
}
}

resource "local_file" "url" {
content = "http://${aws_lb.brewbucks-frontend.dns_name}"
filename = "url.txt"
}

data "aws_iam_role" "lab" {
name = "LabRole"
}
Expand Down
1 change: 1 addition & 0 deletions url.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
http://brewbucks-frontend-1003913552.us-east-1.elb.amazonaws.com

0 comments on commit 36f2c4e

Please sign in to comment.