You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
469 B
HCL
15 lines
469 B
HCL
output "service_name" {
|
|
description = "Service name for Woodpecker server deployment"
|
|
value = kubernetes_service.woodpecker_server.metadata.0.name
|
|
}
|
|
|
|
output "service_http_port" {
|
|
description = "HTTP port exposed by the service"
|
|
value = kubernetes_service.woodpecker_server.spec.0.port.0.name
|
|
}
|
|
|
|
output "service_grpc_port" {
|
|
description = "GRPC port exposed by the service"
|
|
value = kubernetes_service.woodpecker_server.spec.0.port.1.name
|
|
}
|