feat: Add AWS Backup restore testing support (#238, #239) #234
Workflow file for this run
This file contains hidden or 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: Validate | |
on: | |
push: | |
branches: [ master ] | |
pull_request: | |
branches: [ master ] | |
jobs: | |
terraform-validate: | |
name: Terraform Validate | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
terraform_version: ['1.3.0', '1.5.0', '1.9.0'] | |
aws_provider_version: ['6.11.0', '6.13.0'] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v5 | |
- name: Setup Terraform | |
uses: hashicorp/setup-terraform@v3 | |
with: | |
terraform_version: ${{ matrix.terraform_version }} | |
- name: Create test versions.tf with matrix provider version | |
run: | | |
# Backup and remove existing versions.tf to avoid conflict | |
mv versions.tf versions.tf.bak | |
cat > versions.tf << EOF | |
terraform { | |
required_version = ">= 1.3.0" | |
required_providers { | |
aws = { | |
source = "hashicorp/aws" | |
version = "~> ${{ matrix.aws_provider_version }}" | |
} | |
} | |
} | |
EOF | |
- name: Terraform Format Check | |
run: terraform fmt -check=true -recursive | |
- name: Terraform Init | |
run: terraform init -backend=false | |
- name: Terraform Validate | |
run: terraform validate | |
- name: Cleanup | |
run: | | |
# Restore original versions.tf | |
mv versions.tf.bak versions.tf | |
validate-examples: | |
name: Validate Examples | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
example: [ | |
'simple_plan', | |
'complete_plan', | |
'selection_by_tags', | |
'selection_by_conditions', | |
'simple_plan_with_report', | |
'simple_plan_using_variables', | |
'simple_plan_using_lock_configuration', | |
'simple_plan_windows_vss_backup', | |
'organization_backup_policy', | |
'multiple_plans', | |
'aws_recommended_audit_framework', | |
'complete_audit_framework', | |
'simple_audit_framework', | |
'logically_air_gapped_vault' | |
] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v5 | |
- name: Setup Terraform | |
uses: hashicorp/setup-terraform@v3 | |
with: | |
terraform_version: 1.9.0 | |
- name: Terraform Format Check | |
run: | | |
if [ -d "examples/${{ matrix.example }}" ]; then | |
cd examples/${{ matrix.example }} | |
terraform fmt -check=true | |
fi | |
- name: Terraform Init | |
run: | | |
if [ -d "examples/${{ matrix.example }}" ]; then | |
cd examples/${{ matrix.example }} | |
terraform init -backend=false | |
fi | |
- name: Terraform Validate | |
run: | | |
if [ -d "examples/${{ matrix.example }}" ]; then | |
cd examples/${{ matrix.example }} | |
terraform validate | |
fi |