This workflow:
- is triggered on a push to the
mainbranch. - runs on an Ubuntu runner.
- checks out the repository code.
- sets up Terraform using the HashiCorp setup action and specifies the version of Terraform to use.
- runs
terraform initto initialize the working directory. - runs
terraform apply -auto-approveto apply the changes in the Terraform configuration.
In this example, we also pass an environment variable TF_VAR_my_variable to the terraform apply command. The value of this variable is retrieved from a GitHub secret named MY_SECRET.
name: Terraform Apply
on:
push:
branches:
- main
jobs:
terraform_apply:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Setup Terraform
uses: hashicorp/setup-terraform@v1
with:
terraform_version: '1.0.4'
- name: Terraform Init
run: terraform init
- name: Terraform Apply
env:
TF_VAR_my_variable: ${{ secrets.MY_SECRET }}
run: terraform apply -auto-approve
Code language: JavaScript (javascript)I’m Rajesh Kumar, a DevOps, SRE, DevSecOps, Cloud, and Platform Engineering expert passionate about sharing practical knowledge, real-world experiences, and industry best practices. I have worked at Cotocus and regularly write about technology, travel, investing, health, product reviews, and digital marketing through my various platforms.
I publish technical articles at DevOps School, travel stories at Holiday Landmark, stock market insights at Stocks Mantra, health and fitness guidance at My Medic Plus, product reviews at TrueReviewNow, and SEO and digital marketing strategies at Wizbrand.
Find Trusted Cardiac Hospitals
Compare heart hospitals by city and services โ all in one place.
Explore Hospitals