OSVauco/infrastructure/terraform/customers/_template/main.tf
Chris Christiansen a807b0dd89 feat(C2): customer stamp-out struktur og create_customer.sh
- customers/_template/ med main.tf, variables.tf, terraform.tfvars
- customers/medioteq/ populert med produksjonsverdier
- infrastructure/scripts/create_customer.sh for stamp-out av nye kunder
- .gitignore: unntak for customers/**/*.tfvars
2026-05-30 14:56:13 +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
}