Skip to content

Commit 67443bf

Browse files
committed
eli-239 amending make commands in README files
1 parent 9aa428d commit 67443bf

3 files changed

Lines changed: 7 additions & 7 deletions

File tree

infrastructure/stacks/bootstrap/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ make bootstrap-terraform env=<env> tf-command=plan
6262
Workspaces allow for alternative deployments within the same environment (e.g., testing changes in `dev`). Create a workspace with the same name as the environment:
6363

6464
```bash
65-
make terraform-workspace env=<env> stack=bootstrap workspace=<env>
65+
make terraform-workspace env=<env> stack=bootstrap workspace=default
6666
```
6767

6868
### 1.4 Apply Terraform Changes
@@ -105,7 +105,7 @@ terraform {
105105
Reinitialize Terraform to migrate the state to the S3 bucket:
106106

107107
```bash
108-
make terraform env=<env> workspace=<env> stack=bootstrap tf-command=apply
108+
make terraform env=<env> workspace=default stack=bootstrap tf-command=apply
109109
```
110110

111111
You will see a prompt like the following:

infrastructure/stacks/iams-developer-roles/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,13 +37,13 @@ This stack creates the following AWS resources:
3737
3. Plan the deployment:
3838

3939
```bash
40-
make terraform env=dev stack=iams-developer-roles tf-command=plan workspace=dev
40+
make terraform env=dev stack=iams-developer-roles tf-command=plan workspace=default
4141
```
4242

4343
4. Apply the configuration:
4444

4545
```bash
46-
make terraform env=dev stack=iams-developer-roles tf-command=apply workspace=dev
46+
make terraform env=dev stack=iams-developer-roles tf-command=apply workspace=default
4747
```
4848

4949
5. Verify the role was created:

infrastructure/stacks/networking/README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,16 +84,16 @@ For a high-level overview, see the [VPC Structure Confluence Page](https://nhsd-
8484
Run the following command to initialize Terraform and generate a plan. Replace `<env>` with your target environment (e.g., `dev`):
8585

8686
```bash
87-
make terraform env=dev stack=networking tf-command=init workspace=<env>
88-
make terraform env=dev stack=networking tf-command=plan workspace=<env>
87+
make terraform env=dev stack=networking tf-command=init workspace=default
88+
make terraform env=dev stack=networking tf-command=plan workspace=default
8989
```
9090

9191
### 2. Apply Terraform Changes
9292

9393
Deploy the Terraform configuration:
9494

9595
```bash
96-
make terraform env=dev stack=networking tf-command=apply workspace=<env>
96+
make terraform env=dev stack=networking tf-command=apply workspace=default
9797
```
9898

9999
For more on Terraform, see the [Terraform Documentation](https://developer.hashicorp.com/terraform/docs).

0 commit comments

Comments
 (0)