Category: Terraform

  • Multi-Cloud DNS delegated Sub domain with Terraform Cloud

    DNS in a multi-cloud world As companies transition to multi-cloud deployments, creating a common way to deploy solutions has become a requirement, this is also easily achieved by using Terraform to create your immutable infrastructure. The challenge you face is that the infrastructure in a cloud deployment is dynamic in nature and so you can’t…

  • 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…