Skip to content

[CLOUD-1064] Upgrading RDS engine version to 12.16 #49

[CLOUD-1064] Upgrading RDS engine version to 12.16

[CLOUD-1064] Upgrading RDS engine version to 12.16 #49

Workflow file for this run

name: "Terraform CI"
on:
push:
branches:
- main
pull_request:
jobs:
terraform:
name: "Terraform"
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Terraform
uses: hashicorp/setup-terraform@v2
with:
# terraform_version: 0.13.0:
cli_config_credentials_token: ${{ secrets.TF_API_TOKEN }}
- name: Terraform Format
id: fmt
run: terraform fmt -check
- name: Terraform Init
id: init
run: terraform init
- name: Terraform Validate
id: validate
run: terraform validate -no-color