Skip to content

Commit ec38ba6

Browse files
committed
Updated names per Azure requirements
1 parent 49b61b7 commit ec38ba6

File tree

1 file changed

+3
-3
lines changed
  • quickstart/101-cosmos-db-azure-container-instance

1 file changed

+3
-3
lines changed

quickstart/101-cosmos-db-azure-container-instance/aci.tf

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
resource "azurerm_container_group" "vote_aci" {
2-
name = "vote_aci"
2+
name = "vote-aci"
33
location = azurerm_resource_group.rg.location
44
resource_group_name = azurerm_resource_group.rg.name
55
ip_address_type = "public"
6-
dns_name_label = "vote_aci"
6+
dns_name_label = "vote-aci-${random_integer.ri.result}"
77
os_type = "linux"
88

99
container {
10-
name = "vote_aci"
10+
name = "vote-aci"
1111
image = "mcr.microsoft.com/azuredocs/azure-vote-front:cosmosdb"
1212
cpu = "0.5"
1313
memory = "1.5"

0 commit comments

Comments
 (0)