mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
18 lines
421 B
HCL
18 lines
421 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]
|
|
}
|
|
|
|
output "rg_name" {
|
|
value = "e2e-mini-${random_string.suffix.result}"
|
|
sensitive = false
|
|
depends_on = [random_string.suffix]
|
|
}
|