Skip to content

Commit

Permalink
Fix terraform CLI script example arguments
Browse files Browse the repository at this point in the history
Should be prefixed with `infra/`
  • Loading branch information
doshitan committed Jan 14, 2025
1 parent 4df7757 commit 94f22c1
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/infra/making-infra-changes.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,9 +45,9 @@ TF_CLI_ARGS_apply='-var=image_tag=abcdef1' make infra-update-app-service APP_NAM
An alternative to using the Makefile is to directly use the terraform wrapper scripts that the Makefile uses:

```bash
project-root$ ./bin/terraform-init <APP_NAME>/service dev
project-root$ ./bin/terraform-apply <APP_NAME>/service dev
project-root$ ./bin/terraform-init-and-apply <APP_NAME>/service dev # calls init and apply in the same script
project-root$ ./bin/terraform-init infra/<APP_NAME>/service dev
project-root$ ./bin/terraform-apply infra/<APP_NAME>/service dev
project-root$ ./bin/terraform-init-and-apply infra/<APP_NAME>/service dev # calls init and apply in the same script
```

Look in the script files for more details on usage.
Expand Down

0 comments on commit 94f22c1

Please sign in to comment.