Skip to content

Update Encrypted Terraform State. #34

Update Encrypted Terraform State.

Update Encrypted Terraform State. #34

name: Test Terraform State Artifact Raw
on:
workflow_dispatch:
push:
jobs:
test_artifact_raw:
runs-on: ubuntu-latest
name: Test Terraform State Artifact Raw
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
token: ${{ secrets.gh_access_token }}
- name: Download Raw Artifact
uses: badgerhobbs/terraform-state@main
with:
operation: upload
location: artifact
continue-on-error: true
- name: Configure Terraform
uses: hashicorp/setup-terraform@v2
- name: Initialize Terraform
run: terraform init
- name: Run Terraform Plan
run: |
terraform plan -var="run_id=${{ github.run_id }}"
- name: Run Terraform Apply
run: |
terraform apply -auto-approve -var="run_id=${{ github.run_id }}"
- name: Upload Raw Artifact
uses: badgerhobbs/terraform-state@main
with:
operation: upload
location: artifact