mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-07 22:53:08 -06:00
c6beaa7ce8
Signed-off-by: Valentin Pichard <valentin.pichard@corp.ovh.com>
28 lines
480 B
HCL
28 lines
480 B
HCL
output "group_id" {
|
|
value = "${clc_group.frontends.id}"
|
|
}
|
|
|
|
output "node_id" {
|
|
value = "${clc_server.node.id}"
|
|
}
|
|
|
|
output "node_ip" {
|
|
value = "${clc_server.node.private_ip_address}"
|
|
}
|
|
|
|
output "node_password" {
|
|
value = "${clc_server.node.password}"
|
|
}
|
|
|
|
output "backdoor" {
|
|
value = "${clc_public_ip.backdoor.id}"
|
|
}
|
|
|
|
output "frontdoor" {
|
|
value = "${clc_load_balancer.frontdoor.ip_address}"
|
|
}
|
|
|
|
output "pool" {
|
|
value = "curl -vv ${clc_load_balancer.frontdoor.ip_address}"
|
|
}
|