35 lines
753 B
YAML
35 lines
753 B
YAML
name: Terraform AWS IAC Apply
|
|
|
|
on:
|
|
schedule:
|
|
- cron: "0 1 * * 0"
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- "terraform/aws-iac/**"
|
|
jobs:
|
|
terraform-apply:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Setup environment
|
|
uses: ./.github/actions/setup-env
|
|
|
|
|
|
- name: Setup Terraform environment
|
|
uses: ./.github/actions/setup-terraform-env
|
|
|
|
- name: Terraform Init and Apply
|
|
env:
|
|
VAULT_MASTER_PASSWORD: ${{ secrets.VAULT_MASTER_PASSWORD }}
|
|
run: |
|
|
cd terraform/aws-iac
|
|
sectool exec terraform init
|
|
sectool exec terraform apply --auto-approve
|