OSVauco/infrastructure/terraform/customers/_template/main.tf
Chris Christiansen 9fcb9c354a
Some checks are pending
Check Python Version Consistency / Check Python Version (push) Waiting to run
feat(core): Fresh initialization - Deploy v3.6.1 Singularity Architecture
2026-09-03 04:03:09 +00:00

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
}