mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-09 07:33:58 -06:00
8e7f3cc09d
* merge master * added new constructs/naming for deploy scripts, etc. * suppress az login output * removed .tfvars and provider.tf; updated prev merge * reverted .travis.yml back to Hashicorp's * Reverting back to the Hashicorp travis file
11 lines
207 B
HCL
11 lines
207 B
HCL
output "hostname" {
|
|
value = "${var.hostname}"
|
|
}
|
|
|
|
output "vm_fqdn" {
|
|
value = "${azurerm_public_ip.pip.fqdn}"
|
|
}
|
|
|
|
output "ssh_command" {
|
|
value = "ssh ${var.admin_username}@${azurerm_public_ip.pip.fqdn}"
|
|
} |