25 lines
548 B
HCL
25 lines
548 B
HCL
terraform {
|
|
required_providers {
|
|
google = {
|
|
source = "hashicorp/google"
|
|
version = "~> 5.0"
|
|
}
|
|
}
|
|
}
|
|
|
|
provider "google" {
|
|
project = var.project_id
|
|
}
|
|
|
|
module "customer" {
|
|
source = "../../modules/vauco-bootstrap"
|
|
|
|
customer_id = var.customer_id
|
|
project_id = var.project_id
|
|
region = var.region
|
|
billing_account_id = var.billing_account_id
|
|
alert_email = var.alert_email
|
|
billing_viewer_emails = var.billing_viewer_emails
|
|
container_image = var.container_image
|
|
}
|