20 lines
509 B
HCL
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
|
|
}
|