diff --git a/infrastructure/terraform/main.tf b/infrastructure/terraform/main.tf index 3b0ddfe..72f1a3e 100644 --- a/infrastructure/terraform/main.tf +++ b/infrastructure/terraform/main.tf @@ -3,15 +3,14 @@ provider "google" { region = var.region } -module "vauco_bootstrap_medioteq" { +module "medioteq" { source = "../modules/vauco-bootstrap" - customer_id = "medioteq" - project_id = var.project_id - region = var.region - billing_account_id = var.billing_account_id - alert_email = "billing@vauco.no" + customer_id = "medioteq" + project_id = "medioteq-prod-eun1" + region = "europe-north1" + billing_account_id = "0171F6-057E6B-A260BA" + alert_email = "billing@vauco.no" billing_viewer_emails = ["chris.christiansen@vauco.no", "jason.vauger@vauco.no"] - container_image = "europe-west1-docker.pkg.dev/propane-will-491900-m5/agent-images/osvauco-agent:latest" + container_image = "europe-north1-docker.pkg.dev/medioteq-prod-eun1/agent-images/osvauco-agent:latest" } -