Skip to content

Added Terraform files and GitHub Actions. #7

Added Terraform files and GitHub Actions.

Added Terraform files and GitHub Actions. #7

name: Test Terraform State Artifact Encrypted
on:
workflow_dispatch:
push:
jobs:
test_artifact_encrypted:
runs-on: ubuntu-latest
name: Test Terraform State Artifact Encrypted
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Download Encrypted Artifact & Decrypt Artifact
uses: badgerhobbs/terraform-state@main
with:
encryption_key: ${{ secrets.encryption_key }}
operation: download
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: Encrypt Artifact & Upload Encrypted Artifact
uses: badgerhobbs/terraform-state@main
with:
encryption_key: ${{ secrets.encryption_key }}
operation: upload
location: artifact