Files
Subodh dafcd9777f
Some checks failed
Continuous Integration - Pull Request / code-tests (pull_request) Has been cancelled
Continuous Integration - Pull Request / deployment-tests (local-code) (pull_request) Has been cancelled
helm-chart-ci / helm-chart-ci (pull_request) Has been cancelled
kubevious-manifests-ci / kubevious-manifests-ci (pull_request) Has been cancelled
kustomize-build-ci / kustomize-build-ci (pull_request) Has been cancelled
terraform-validate-ci / terraform-validate-ci (pull_request) Has been cancelled
Clean up deployment / cleanup-namespace (pull_request) Has been cancelled
Continuous Integration - Main/Release / code-tests (push) Has been cancelled
Continuous Integration - Main/Release / deployment-tests (local-code) (push) Has been cancelled
helm-chart-ci / helm-chart-ci (push) Has been cancelled
kubevious-manifests-ci / kubevious-manifests-ci (push) Has been cancelled
kustomize-build-ci / kustomize-build-ci (push) Has been cancelled
terraform-validate-ci / terraform-validate-ci (push) Has been cancelled
Initial commit
2026-02-04 20:47:56 +05:30

997 B

This folder contains the Terraform for some of the infrastructure used by the CICD (continuous integration and continuous delivery/continuous deployment) of this repository.

Update this Terraform

To make changes to this Terraform, follow these steps:

  1. Make sure you have access to the online-boutique-ci Google Cloud project.
  2. Move into this folder: cd .github/terraform
  3. Set the PROJECT_ID environment variable: export PROJECT_ID=online-boutique-ci
  4. Prepare Terraform and download the necessary Terraform dependencies (such as the "hashicorp/google" Terraform provider): terraform init
  5. Apply the Terraform: terraform apply -var project_id=${PROJECT_ID}
    • Ideally, you would see Apply complete! Resources: 0 added, 0 changed, 0 destroyed. in the output.
  6. Make your desired changes to the Terraform code.
  7. Apply the Terraform: terraform apply -var project_id=${PROJECT_ID}
    • This time, Terraform will prompt you confirm your changes before applying them.