Skip to content
Merged
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ workflows:
description: |
This workflow deploys the artifact bucket for the app-on-lambda-with-atmos workflow.
steps:
- command: terraform deploy s3-bucket/github-action-artifacts -s core-us-east-1-artifacts -var privileged_principal_arns=[]
- command: terraform deploy s3-bucket/github-action-artifacts -s core-us-east-1-artifacts -var "privileged_principal_arns=[]"

deploy/artifact-bucket:
description: |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ workflows:
description: |
Deploy the AWS Organization. This is required before finishing the root account requirements.
steps:
- command: terraform deploy account -target=aws_organizations_organization.this[0] -s core-gbl-root
- command: terraform deploy account -target="aws_organizations_organization.this[0]" -s core-gbl-root
- command: aws ram enable-sharing-with-aws-organization
type: shell

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,10 +24,10 @@ workflows:
init/tfstate:
description: Provision Terraform State Backend for initial deployment.
steps:
- command: terraform deploy tfstate-backend -var=access_roles_enabled=false --stack core-use1-root --auto-generate-backend-file=false
- command: terraform deploy tfstate-backend -var="access_roles_enabled=false" --stack core-use1-root --auto-generate-backend-file=false
- command: until aws s3 ls acme-core-use1-root-tfstate; do sleep 5; done
type: shell
- command: terraform deploy tfstate-backend -var=access_roles_enabled=false --stack core-use1-root --init-run-reconfigure=false
- command: terraform deploy tfstate-backend -var="access_roles_enabled=false" --stack core-use1-root --init-run-reconfigure=false

deploy/tfstate:
description: >-
Expand Down
Loading