constellation/.github/actions/e2e_mini/output.tf
Fabian Kammel 6564fcbf6c
E2E Test Mini Constellation (#796)
* fix: typo to build amd64 for macos
* Implement E2E test for mini constellation
Signed-off-by: Fabian Kammel <fk@edgeless.systems>
2022-12-14 16:51:42 +01: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]
}