Initial put

This commit is contained in:
Tom Archer
2024-10-14 13:56:33 -07:00
parent 55754aaaf0
commit 3d918001e7
5 changed files with 104 additions and 0 deletions

View File

@ -0,0 +1,15 @@
output "resource_group_name" {
value = azurerm_resource_group.rg.name
}
output "container_group_name" {
value = azurerm_container_group.example.name
}
output "ip_address" {
value = azurerm_container_group.example.ip_address
}
output "fqdn" {
value = azurerm_container_group.example.fqdn
}