2023-12-15 04:36:58 -05:00
|
|
|
# Outputs common to all CSPs
|
|
|
|
|
2023-10-17 09:46:15 -04:00
|
|
|
output "out_of_cluster_endpoint" {
|
2023-12-15 04:36:58 -05: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."
|
2023-10-17 09:46:15 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
output "in_cluster_endpoint" {
|
2023-12-15 04:36:58 -05:00
|
|
|
value = local.in_cluster_endpoint
|
|
|
|
description = "Internal endpoint for the Kubernetes API server."
|
2022-10-06 05:51:26 -04:00
|
|
|
}
|
2022-11-26 13:44:34 -05:00
|
|
|
|
2023-07-21 10:43:51 -04:00
|
|
|
output "api_server_cert_sans" {
|
2023-10-17 09:46:15 -04:00
|
|
|
value = sort(
|
|
|
|
distinct(
|
|
|
|
concat(
|
|
|
|
[
|
|
|
|
local.in_cluster_endpoint,
|
|
|
|
local.out_of_cluster_endpoint,
|
|
|
|
],
|
|
|
|
var.custom_endpoint == "" ? [] : [var.custom_endpoint],
|
|
|
|
var.internal_load_balancer ? [] : [local.wildcard_lb_dns_name],
|
|
|
|
)
|
|
|
|
)
|
|
|
|
)
|
2023-12-15 04:36:58 -05:00
|
|
|
description = "List of Subject Alternative Names (SANs) for the API server certificate."
|
2023-07-21 10:43:51 -04:00
|
|
|
}
|
|
|
|
|
2023-01-19 04:41:07 -05:00
|
|
|
output "uid" {
|
2023-12-15 04:36:58 -05:00
|
|
|
value = local.uid
|
|
|
|
description = "Unique Identifier (UID) of the cluster."
|
|
|
|
}
|
|
|
|
|
|
|
|
output "init_secret" {
|
|
|
|
value = random_password.init_secret.result
|
|
|
|
sensitive = true
|
|
|
|
description = "Initialization secret to authenticate the bootstrapping node."
|
2023-01-19 04:41:07 -05:00
|
|
|
}
|
|
|
|
|
2023-12-15 04:36:58 -05:00
|
|
|
output "name" {
|
|
|
|
value = local.name
|
|
|
|
description = "Unique name of the Constellation cluster, comprised by name and UID."
|
2022-11-26 13:44:34 -05:00
|
|
|
}
|
2023-03-20 08:33:04 -04:00
|
|
|
|
2023-12-15 04:36:58 -05:00
|
|
|
output "ip_cidr_node" {
|
|
|
|
value = local.cidr_vpc_subnet_nodes
|
|
|
|
description = "CIDR block of the node network."
|
|
|
|
}
|
|
|
|
|
|
|
|
# Azure-specific outputs
|
|
|
|
|
|
|
|
output "attestation_url" {
|
|
|
|
value = var.create_maa ? azurerm_attestation_provider.attestation_provider[0].attestation_uri : ""
|
|
|
|
description = "URL of the cluster's Microsoft Azure Attestation (MAA) provider."
|
2023-03-20 08:33:04 -04:00
|
|
|
}
|
2023-07-31 04:53:05 -04:00
|
|
|
|
|
|
|
output "network_security_group_name" {
|
2023-12-15 04:36:58 -05:00
|
|
|
value = azurerm_network_security_group.security_group.name
|
|
|
|
description = "Name of the cluster's network security group."
|
2023-07-31 04:53:05 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
output "loadbalancer_name" {
|
2023-12-15 04:36:58 -05:00
|
|
|
value = azurerm_lb.loadbalancer.name
|
|
|
|
description = "Name of the cluster's load balancer."
|
2023-07-31 04:53:05 -04:00
|
|
|
}
|
|
|
|
|
2023-08-01 02:40:44 -04:00
|
|
|
output "user_assigned_identity_client_id" {
|
2023-12-15 04:36:58 -05:00
|
|
|
value = data.azurerm_user_assigned_identity.uaid.client_id
|
|
|
|
description = "Client ID of the user assigned identity used within the cluster."
|
2023-07-31 04:53:05 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
output "resource_group" {
|
2023-12-15 04:36:58 -05:00
|
|
|
value = var.resource_group
|
|
|
|
description = "Name of the resource group the cluster resides in."
|
2023-07-31 04:53:05 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
output "subscription_id" {
|
2023-12-15 04:36:58 -05:00
|
|
|
value = data.azurerm_subscription.current.subscription_id
|
|
|
|
description = "ID of the Azure subscription the cluster resides in."
|
2023-10-23 09:06:48 -04:00
|
|
|
}
|