docs: how to set up MiniConstellation on Azure (#1999)

* init

* update doc

* move quick-setup to devdocs
This commit is contained in:
Adrian Stobbe 2023-07-07 15:14:13 +02:00 committed by GitHub
parent 50796cf279
commit 94b087197b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 491 additions and 11 deletions

View file

@ -0,0 +1,11 @@
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]
}