Skip to content

Added Terraform files and GitHub Actions. #14

Added Terraform files and GitHub Actions.

Added Terraform files and GitHub Actions. #14

name: Repository File
on:
workflow_dispatch:
push:
paths-ignore:
- "**.tfstate"
- "**.tfstate.encrypted"
jobs:
repository_file:
runs-on: ubuntu-latest
name: Repository File
steps:
- name: Checkout repository
uses: actions/checkout@v2
with:
token: ${{ secrets.gh_access_token }}
- 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: List all files and directories
run: |
echo "List all directories and files in the GitHub workspace"
ls -R
- name: Commit Repository File
uses: badgerhobbs/terraform-state@main
with:
operation: upload
location: repository