mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
6564fcbf6c
* fix: typo to build amd64 for macos * Implement E2E test for mini constellation Signed-off-by: Fabian Kammel <fk@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]
|
|
}
|