Added Terraform files and GitHub Actions. #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test Terraform State Repository File Raw | |
on: | |
workflow_dispatch: | |
push: | |
jobs: | |
test_repository_file_raw: | |
runs-on: ubuntu-latest | |
name: Test Terraform State Repository File Raw | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
- 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: Commit Repository File | |
uses: badgerhobbs/terraform-state@main | |
with: | |
operation: upload | |
location: repository |