mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-14 02:14:21 -05:00
9 lines
167 B
Terraform
9 lines
167 B
Terraform
|
output "private_key" {
|
||
|
value = tls_private_key.ssh_key.private_key_pem
|
||
|
sensitive = true
|
||
|
}
|
||
|
|
||
|
output "public_ip" {
|
||
|
value = azurerm_public_ip.pubIP.ip_address
|
||
|
}
|