mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-01-09 22:49:39 -05:00
c0a59a18d5
* Choose resource group name outside of Terraform to catch issues during apply * Run test in West Europe --------- Signed-off-by: Daniel Weiße <dw@edgeless.systems>
12 lines
283 B
HCL
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]
|
|
}
|