auto: sync

This commit is contained in:
Chris Christiansen 2026-05-27 16:29:43 +00:00
parent 553ec027e3
commit 971bec0c5d
2 changed files with 3 additions and 37 deletions

View File

@ -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 godkjente enheter.
# ------------------------------------------------------------------------------
module "medioteq" {
source = "../modules/vauco-bootstrap"
# TODO: Endelig project_id 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 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 = "<IMAGE_URI_HER>" # F.eks. "europe-north1-docker.pkg.dev/..."
}

View File

@ -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
}