Skip to content

Commit 53890bd

Browse files
♻️ Go Testing Framework (#830)
2 parents 9081206 + 4e0a98b commit 53890bd

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

examples/snippets/stacks/workflows/quickstart/app/app-on-lambda-with-atmos.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ workflows:
1010
description: |
1111
This workflow deploys the artifact bucket for the app-on-lambda-with-atmos workflow.
1212
steps:
13-
- command: terraform deploy s3-bucket/github-action-artifacts -s core-us-east-1-artifacts -var privileged_principal_arns=[]
13+
- command: terraform deploy s3-bucket/github-action-artifacts -s core-us-east-1-artifacts -var "privileged_principal_arns=[]"
1414

1515
deploy/artifact-bucket:
1616
description: |

examples/snippets/stacks/workflows/quickstart/foundation/accounts.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ workflows:
99
description: |
1010
Deploy the AWS Organization. This is required before finishing the root account requirements.
1111
steps:
12-
- command: terraform deploy account -target=aws_organizations_organization.this[0] -s core-gbl-root
12+
- command: terraform deploy account -target="aws_organizations_organization.this[0]" -s core-gbl-root
1313
- command: aws ram enable-sharing-with-aws-organization
1414
type: shell
1515

examples/snippets/stacks/workflows/quickstart/foundation/baseline.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,10 +24,10 @@ workflows:
2424
init/tfstate:
2525
description: Provision Terraform State Backend for initial deployment.
2626
steps:
27-
- command: terraform deploy tfstate-backend -var=access_roles_enabled=false --stack core-use1-root --auto-generate-backend-file=false
27+
- command: terraform deploy tfstate-backend -var="access_roles_enabled=false" --stack core-use1-root --auto-generate-backend-file=false
2828
- command: until aws s3 ls acme-core-use1-root-tfstate; do sleep 5; done
2929
type: shell
30-
- command: terraform deploy tfstate-backend -var=access_roles_enabled=false --stack core-use1-root --init-run-reconfigure=false
30+
- command: terraform deploy tfstate-backend -var="access_roles_enabled=false" --stack core-use1-root --init-run-reconfigure=false
3131

3232
deploy/tfstate:
3333
description: >-

0 commit comments

Comments
 (0)