constellation/e2e/miniconstellation/output.tf
2023-03-23 14:55:29 +01:00

12 lines
283 B
HCL

output "public_ip" {
value = azurerm_public_ip.main.ip_address
sensitive = false
depends_on = [azurerm_public_ip.main]
}
output "ssh_private_key" {
value = tls_private_key.ssh_key.private_key_openssh
sensitive = true
depends_on = [tls_private_key.ssh_key]
}