Skip to content

Added Terraform files and GitHub Actions. #33

Added Terraform files and GitHub Actions.

Added Terraform files and GitHub Actions. #33

Workflow file for this run

name: Artifact
on:
workflow_dispatch:
push:
paths-ignore:
- "**.tfstate"
- "**.tfstate.encrypted"
jobs:
artifact:
runs-on: ubuntu-latest
name: Artifact
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Download Artifact
uses: badgerhobbs/terraform-state@v1
with:
operation: download
location: artifact
github_token: ${{ secrets.gh_access_token }}
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 Artifact
uses: badgerhobbs/terraform-state@v1
with:
operation: upload
location: artifact
github_token: ${{ secrets.gh_access_token }}