Skip to content
Closed
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 @@ -47,7 +47,7 @@ jobs:
cat ${{ runner.temp }}/atmos.yaml

- name: Plan Atmos Component
uses: cloudposse/github-action-atmos-terraform-plan@v4
uses: cloudposse/github-action-atmos-terraform-plan@v5
with:
component: "foobar-atmos-pro"
stack: "plat-ue2-sandbox"
Expand Down Expand Up @@ -89,4 +89,4 @@ jobs:
if: ${{ always() }}
steps:
- name: Tear down
run: echo "Do Tear down"
run: echo "Do Tear down"
4 changes: 2 additions & 2 deletions action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -410,9 +410,9 @@ runs:
--output "${{ github.workspace }}/atmos-apply-summary.md" \
--log-level $([[ "${{ inputs.debug }}" == "true" ]] && echo "DEBUG" || echo "INFO") \
apply -- \
atmos terraform apply ${{ inputs.component }} \
atmos terraform deploy ${{ inputs.component }} \
--stack ${{ inputs.stack }} \
-auto-approve \
--planfile ${{ steps.vars.outputs.plan_file }} \
-input=false \
-no-color \
&> ${TERRAFORM_OUTPUT_FILE}
Expand Down