2023-12-15 10:36:58 +01:00
|
|
|
# Outputs common to all CSPs
|
|
|
|
|
2023-10-17 15:46:15 +02:00
|
|
|
output "out_of_cluster_endpoint" {
|
2023-12-15 10:36:58 +01:00
|
|
|
value = local.out_of_cluster_endpoint
|
|
|
|
description = "External endpoint for the Kubernetes API server. Only varies from the `in_cluster_endpoint` when using an internal load balancer."
|
2022-09-27 09:22:29 +02:00
|
|
|
}
|
2022-11-26 19:44:34 +01:00
|
|
|
|
2023-10-17 15:46:15 +02:00
|
|
|
output "in_cluster_endpoint" {
|
2023-12-15 10:36:58 +01:00
|
|
|
value = local.in_cluster_endpoint
|
|
|
|
description = "Internal endpoint for the Kubernetes API server."
|
2023-07-21 16:43:51 +02:00
|
|
|
}
|
2023-10-17 15:46:15 +02:00
|
|
|
output "api_server_cert_sans" {
|
|
|
|
value = sort(
|
|
|
|
distinct(
|
|
|
|
concat(
|
|
|
|
[
|
|
|
|
local.in_cluster_endpoint,
|
|
|
|
local.out_of_cluster_endpoint,
|
|
|
|
],
|
|
|
|
var.custom_endpoint == "" ? [] : [var.custom_endpoint],
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
2023-12-15 10:36:58 +01:00
|
|
|
description = "List of Subject Alternative Names (SANs) for the API server certificate."
|
2023-07-21 16:43:51 +02:00
|
|
|
}
|
|
|
|
|
2023-01-19 10:41:07 +01:00
|
|
|
output "uid" {
|
2023-12-15 10:36:58 +01:00
|
|
|
value = local.uid
|
|
|
|
description = "Unique Identifier (UID) of the cluster."
|
2023-01-19 10:41:07 +01:00
|
|
|
}
|
|
|
|
|
2023-12-15 10:36:58 +01:00
|
|
|
output "init_secret" {
|
|
|
|
value = random_password.init_secret.result
|
|
|
|
sensitive = true
|
|
|
|
description = "Initialization secret to authenticate the bootstrapping node."
|
2022-11-26 19:44:34 +01:00
|
|
|
}
|
2023-07-31 10:53:05 +02:00
|
|
|
|
2023-12-15 10:36:58 +01:00
|
|
|
output "name" {
|
|
|
|
value = local.name
|
|
|
|
description = "Unique name of the Constellation cluster, comprised by name and UID."
|
2023-07-31 10:53:05 +02:00
|
|
|
}
|
|
|
|
|
2023-12-15 10:36:58 +01:00
|
|
|
output "ip_cidr_node" {
|
|
|
|
value = local.cidr_vpc_subnet_nodes
|
|
|
|
description = "CIDR block of the node network."
|
2023-07-31 10:53:05 +02:00
|
|
|
}
|
|
|
|
|
2023-12-15 10:36:58 +01:00
|
|
|
# GCP-specific outputs
|
|
|
|
|
|
|
|
output "project" {
|
|
|
|
value = var.project
|
|
|
|
description = "The GCP project the cluster is deployed in."
|
2023-07-31 10:53:05 +02:00
|
|
|
}
|
2023-10-09 13:04:29 +02:00
|
|
|
|
2023-12-15 10:36:58 +01:00
|
|
|
output "ip_cidr_pod" {
|
|
|
|
value = local.cidr_vpc_subnet_pods
|
|
|
|
description = "CIDR block of the pod network."
|
2023-10-09 13:04:29 +02:00
|
|
|
}
|