terraform { required_providers { google = { source = "hashicorp/google" version = "~> 4.0" } } } // Provider // ---------------------------------- // Connect to the GCP project provider "google" { # Configuration options project = var.project_name # Use variable from tfvars region = "us-central1" # Replace with your desired region } # provider "google" { # credentials = file(".json") # project = var.project_name # region = var.region # zone = var.zone # }