Tag: IAC

  • Setting up GOOGLE_CREDENTIALS for Terraform Cloud

    The getting stared guides for using Terraform with Google Cloud Platform (GCP) https://cloud.google.com/community/tutorials/getting-started-on-gcp-with-terraform All suggest using code like this to provide credentials  // Configure the Google Cloud provider provider “google” {  credentials = “${file(“CREDENTIALS_FILE.json”)}”  project     = “flask-app-211918”  region      = “us-west1” } This works well when you are just learning Terraform. Once you…