Created
June 30, 2023 14:29
-
-
Save imartinflores/ece7d0bc639f24b70d7ddc7ffbe236d4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
output "public_ip_address" { | |
value = azurerm_linux_virtual_machine.yourvmname.public_ip_address | |
} | |
output "azurerm_linux_virtual_machine_name" { | |
value = azurerm_linux_virtual_machine.yourvmname.name | |
} | |
output "resource_group_name" { | |
value = azurerm_linux_virtual_machine.yourvmname.resource_group_name | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment