From 971bec0c5d7a7e9316de4c2323a3be068d25a263 Mon Sep 17 00:00:00 2001 From: Chris Christiansen Date: Wed, 27 May 2026 16:29:43 +0000 Subject: [PATCH] auto: sync --- infrastructure/terraform/medioteq.tf | 34 ---------------------------- infrastructure/terraform/outputs.tf | 6 ++--- 2 files changed, 3 insertions(+), 37 deletions(-) delete mode 100644 infrastructure/terraform/medioteq.tf diff --git a/infrastructure/terraform/medioteq.tf b/infrastructure/terraform/medioteq.tf deleted file mode 100644 index 45559ae..0000000 --- a/infrastructure/terraform/medioteq.tf +++ /dev/null @@ -1,34 +0,0 @@ -# ============================================================================== -# Terraform-konfigurasjon for Medioteq (kunde) - UTKAST -# -# FASE 1: Design og planlegging. -# ============================================================================== - -# ------------------------------------------------------------------------------ -# Domener og Autentisering -# ------------------------------------------------------------------------------ -# Planlagte domener for Medioteq-tjenesten: -# Produksjon: https://medioteq-os.vauco.no -# Staging: https://medioteq-oss.vauco.no -# -# Autentiseringsstrategi (Fase 1): -# - Google-innlogging for brukere på godkjente enheter. -# ------------------------------------------------------------------------------ - -module "medioteq" { - source = "../modules/vauco-bootstrap" - - # TODO: Endelig project_id må velges i en HITL-gate før 'terraform apply'. - # Forslag: "medioteq-prod-eun1", "medioteq-clinical-eun1" - project_id = "medioteq-prod-eun1" - - customer_id = "medioteq" - region = "europe-north1" - - # TODO: Disse verdiene må hentes fra et sikkert sted, f.eks. CI/CD-variabler, - # og mates inn i terraform plan-kommandoen. - billing_account_id = "0171F6-057E6B-A260BA" - alert_email = "billing@vauco.no" # Eksempelverdi - billing_viewer_emails = ["chris.christiansen@vauco.no"] # Eksempelverdi - container_image = "" # F.eks. "europe-north1-docker.pkg.dev/..." -} diff --git a/infrastructure/terraform/outputs.tf b/infrastructure/terraform/outputs.tf index 194eca2..3363278 100644 --- a/infrastructure/terraform/outputs.tf +++ b/infrastructure/terraform/outputs.tf @@ -1,14 +1,14 @@ output "medioteq_cloud_run_service_url" { description = "The URL of the Medioteq Cloud Run service." - value = module.vauco_bootstrap_medioteq.cloud_run_service_url + value = module.medioteq.cloud_run_service_url } output "medioteq_service_account_email" { description = "The email of the Medioteq service account." - value = module.vauco_bootstrap_medioteq.service_account_email + value = module.medioteq.service_account_email } output "medioteq_artifact_registry_url" { description = "The URL of the Medioteq Artifact Registry repository." - value = module.vauco_bootstrap_medioteq.artifact_registry_url + value = module.medioteq.artifact_registry_url }