Skip to content

tickets/DM-41550: Add Git LFS objects #85

tickets/DM-41550: Add Git LFS objects

tickets/DM-41550: Add Git LFS objects #85

# Deploys Dev Integration GCP Project with Terraform
name: 'Data Curation PROD GCP Project'
on:
pull_request:
paths:
- 'environment/deployments/data-curation/env/production.tfvars'
push:
branches:
- main
paths:
- 'environment/deployments/data-curation/env/production.tfvars'
jobs:
terraform:
name: 'Terraform'
runs-on: ubuntu-latest
# Use the Bash shell regardless whether the GitHub Actions runner is ubuntu-latest, macos-latest, or windows-latest
defaults:
run:
shell: bash
working-directory: ./environment/deployments/data-curation
# Checkout the repository to the GitHub Actions runner
steps:
- name: Checkout
uses: actions/checkout@v3
# gcloud CLI setup
- name: GCP login
uses: google-github-actions/setup-gcloud@v0
with:
version: '379.0.0'
service_account_key: ${{ secrets.GOOGLE_CREDENTIALS }}
project_id: ${{ secrets.GCP_PROJECT_ID }}
export_default_credentials: true
# Installs terraform
- name: Setup Terraform
uses: hashicorp/setup-terraform@v1
with:
terraform_version: 0.13.5
# Checks for proper formatting
- name: Terraform Fmt
run: terraform fmt
# Initialize a new or existing terraform working directory by creating initial files, loading any remote state, downloading modules, etc.
- name: Terraform Init
run: terraform init -backend-config=bucket=${{ secrets.TERRAFORM_STATE_BUCKET }} -backend-config=prefix=data-curation/prod
# Checks that all terraform configuration files adhere to a canonical format
- name: Terraform Validate
run: terraform validate
# Generates an execution plan for terraform
- name: Terraform Plan
id: plan
run: terraform plan -var-file=env/production.tfvars -no-color
# On push to main, build or change infrastructure according to terraform configuration files
- name: Terraform Apply
if: github.ref == 'refs/heads/main' && github.event_name == 'push'
run: terraform apply -var-file=env/production.tfvars -auto-approve