From ec38ba616c39d98a1d57abc7164df4c35c29d707 Mon Sep 17 00:00:00 2001 From: Tom Archer Date: Tue, 30 Aug 2022 13:53:03 -0700 Subject: [PATCH] Updated names per Azure requirements --- quickstart/101-cosmos-db-azure-container-instance/aci.tf | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/quickstart/101-cosmos-db-azure-container-instance/aci.tf b/quickstart/101-cosmos-db-azure-container-instance/aci.tf index c7779a18..a3016eac 100644 --- a/quickstart/101-cosmos-db-azure-container-instance/aci.tf +++ b/quickstart/101-cosmos-db-azure-container-instance/aci.tf @@ -1,13 +1,13 @@ resource "azurerm_container_group" "vote_aci" { - name = "vote_aci" + name = "vote-aci" location = azurerm_resource_group.rg.location resource_group_name = azurerm_resource_group.rg.name ip_address_type = "public" - dns_name_label = "vote_aci" + dns_name_label = "vote-aci-${random_integer.ri.result}" os_type = "linux" container { - name = "vote_aci" + name = "vote-aci" image = "mcr.microsoft.com/azuredocs/azure-vote-front:cosmosdb" cpu = "0.5" memory = "1.5"