mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
29 lines
603 B
HCL
29 lines
603 B
HCL
output "out_of_cluster_endpoint" {
|
|
value = openstack_networking_floatingip_v2.public_ip.address
|
|
}
|
|
|
|
output "in_cluster_endpoint" {
|
|
value = openstack_networking_floatingip_v2.public_ip.address
|
|
}
|
|
|
|
output "api_server_cert_sans" {
|
|
value = sort(concat([openstack_networking_floatingip_v2.public_ip.address], var.custom_endpoint == "" ? [] : [var.custom_endpoint]))
|
|
}
|
|
|
|
output "uid" {
|
|
value = local.uid
|
|
}
|
|
|
|
output "initSecret" {
|
|
value = random_password.initSecret.result
|
|
sensitive = true
|
|
}
|
|
|
|
output "name" {
|
|
value = local.name
|
|
}
|
|
|
|
output "ip_cidr_nodes" {
|
|
value = local.cidr_vpc_subnet_nodes
|
|
}
|