We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49b61b7 commit ec38ba6Copy full SHA for ec38ba6
quickstart/101-cosmos-db-azure-container-instance/aci.tf
@@ -1,13 +1,13 @@
1
resource "azurerm_container_group" "vote_aci" {
2
- name = "vote_aci"
+ name = "vote-aci"
3
location = azurerm_resource_group.rg.location
4
resource_group_name = azurerm_resource_group.rg.name
5
ip_address_type = "public"
6
- dns_name_label = "vote_aci"
+ dns_name_label = "vote-aci-${random_integer.ri.result}"
7
os_type = "linux"
8
9
container {
10
11
image = "mcr.microsoft.com/azuredocs/azure-vote-front:cosmosdb"
12
cpu = "0.5"
13
memory = "1.5"
0 commit comments