Skip to content

Artifact Encrypted

Artifact Encrypted #35

name: Artifact Encrypted
on:
workflow_dispatch:
workflow_run:
workflows: ["Artifact"]
types:
- completed
jobs:
artifact_encrypted:
runs-on: ubuntu-latest
name: Artifact Encrypted
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Download Encrypted Artifact & Decrypt Artifact
uses: badgerhobbs/terraform-state@v2
with:
encryption_key: ${{ secrets.encryption_key }}
operation: download
location: artifact
github_token: ${{ secrets.gh_access_token }}
continue-on-error: true
- name: Configure Terraform
uses: hashicorp/setup-terraform@v3
- 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: Encrypt Artifact & Upload Encrypted Artifact
uses: badgerhobbs/terraform-state@v2
with:
encryption_key: ${{ secrets.encryption_key }}
operation: upload
location: artifact
github_token: ${{ secrets.gh_access_token }}