Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
tulna07 committed Mar 28, 2024
1 parent 1b43888 commit c9295de
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -204,7 +204,7 @@ git clone https://github.com/Definitely-not-AWS-Workshops/ip-printer.git
cd ip-printer
```

**16.** Go to your AWS account homepage. Click the AWS username dropdown and then get your AWS account ID.
**16.** Go to your AWS [hompage](https://console.aws.amazon.com/). Click the AWS username dropdown and then get your AWS account ID.

![00011](/images/5/2/00011.svg?featherlight=false&width=100pc)

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ Fill the following lines of code to *security/main.tf*. Remember to replace *\<y

```hcl
module "security" {
source = "git::https://github.com/tulna07/workshop-1-tf-modules.git//modules/security?ref=v1.0.0"
source = "git::https://github.com/<your-github-username>/workshop-1-tf-modules.git//modules/security?ref=v1.0.0"
environment = var.environment
project_name = var.project_name
Expand Down
6 changes: 3 additions & 3 deletions content/5-Terraform-Live-Repository/6-App-Module/_index.md
Original file line number Diff line number Diff line change
Expand Up @@ -455,13 +455,13 @@ git tag -a "v2.0.0" -m "release v2.0.0"
git push --follow-tags
```

**25.** Update your source app module in the *workshop-1-tf-live* local repository to **v2.0.0**.
**25.** Update your source app module in the *workshop-1-tf-live* local repository to **v2.0.0**. Remember to replace *\<your-github-username\>* with your GitHub username.

In *environments/dev/app/main.tf* file, change

```hcl
module "app" {
source = "git::https://github.com/tulna07/workshop-1-tf-modules.git//modules/app?ref=v1.0.0"
source = "git::https://github.com/<your-github-username>/workshop-1-tf-modules.git//modules/app?ref=v1.0.0"
# Other inputs
# ...
Expand All @@ -472,7 +472,7 @@ to

```hcl
module "app" {
source = "git::https://github.com/tulna07/workshop-1-tf-modules.git//modules/app?ref=v2.0.0"
source = "git::https://github.com/<your-github-username>/workshop-1-tf-modules.git//modules/app?ref=v2.0.0"
# Other inputs
# ...
Expand Down
2 changes: 1 addition & 1 deletion static/images/5/3/0008.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit c9295de

Please sign in to comment.