Simplify HAproxy and upgrade provider #42
Workflow file for this run
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: 'Terraform' | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
jobs: | |
terraform: | |
name: 'Terraform' | |
runs-on: ubuntu-latest | |
environment: production | |
permissions: | |
# Give the default GITHUB_TOKEN write permission to commit and push the | |
# added or changed files to the repository. | |
contents: write | |
# Use the Bash shell regardless whether the GitHub Actions runner is ubuntu-latest, macos-latest, or windows-latest | |
defaults: | |
run: | |
shell: bash | |
steps: | |
# Checkout the repository to the GitHub Actions runner | |
- name: Checkout | |
uses: actions/checkout@v3 | |
# Copy the terraform.tfvars.example file for variables | |
- name: Create terraform.tfvars | |
run: cp ./terraform.tfvars.example ./terraform.tfvars | |
# Create random SSH keys | |
- name: Create random SSH keys | |
run: mkdir ~/.ssh && touch ~/.ssh/id_rsa && touch ~/.ssh/id_rsa.pub | |
# Initialize Terraform working directory by creating initial files, loading any remote state, downloading modules, etc. | |
- name: Terraform Init | |
run: terraform init | |
# Validate Terraform files | |
- name: Terraform Validate | |
run: terraform validate | |
# Format Terraform files | |
- name: Terraform Format | |
run: terraform fmt --recursive | |
# Commit files | |
- name: Commit and Push | |
uses: stefanzweifel/git-auto-commit-action@v5.0.0 | |
with: | |
commit_message: 'Formatted terraform files' |