constellation/dev-docs/miniconstellation/azure-terraform/output.tf
Adrian Stobbe 94b087197b
docs: how to set up MiniConstellation on Azure (#1999)
* init

* update doc

* move quick-setup to devdocs
2023-07-07 15:14:13 +02: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]
}