Files
foxhunt/infra/modules/registry/outputs.tf
2026-02-25 21:46:39 +01:00

20 lines
509 B
HCL

output "endpoint" {
description = "Registry endpoint URL"
value = scaleway_registry_namespace.foxhunt.endpoint
}
output "namespace_id" {
description = "Registry namespace ID"
value = scaleway_registry_namespace.foxhunt.id
}
output "ci_endpoint" {
description = "CI registry endpoint URL"
value = scaleway_registry_namespace.foxhunt_ci.endpoint
}
output "ci_namespace_id" {
description = "CI registry namespace ID"
value = scaleway_registry_namespace.foxhunt_ci.id
}