This repository has been archived on 2022-07-15. You can view files and clone it, but cannot push or open issues or pull requests.
mmp-osp1/terraform/google/provider.tf

16 lines
335 B
HCL

terraform {
required_providers {
google = {
source = "hashicorp/google"
version = "=4.14.0"
}
}
}
# Configure the Google Provider
provider "google" {
project = var.project
region = var.region
zone = var.zone
credentials = file("/home/noble/.config/gcloud/gcloud-terraform-key.json")
}