Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated usage example in command-line-deployment.md file #109

Merged
merged 1 commit into from
Mar 25, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/docs/command-line-deployment.md
Original file line number Diff line number Diff line change
Expand Up @@ -86,15 +86,15 @@ For example, from the root of this repository, you could apply Tier 0 with a com
```bash
src/scripts/apply_terraform.sh \
src/core/globals.tfvars \
src/core/tier-0
src/core/tier-0 tier-0.tfvars
```

To apply Tier 1, you could then change the target directory:

```bash
src/scripts/apply_terraform.sh \
src/core/globals.tfvars \
src/core/tier-1
src/core/tier-1 tier-1.tfvars
```

Repeating this same pattern, for whatever configuration you wanted to apply and reuse in some automated pipeline.
Expand Down