streaming-data-to-analytics/terraform/provider.tf (16 lines of code) (raw):
terraform {
backend "gcs" {
}
required_providers {
google = {
version = "~> 4.63"
}
}
provider_meta "google" {
module_name = "cloud-solutions/streaming-data-to-analytics-v0.1"
}
}
provider "google" {
project = var.project_id
region = var.region
}