diff --git a/quickstart/101-cognitive-services-account/main.tf b/quickstart/101-cognitive-services-account/main.tf index 78b13afd5..ab776bf86 100644 --- a/quickstart/101-cognitive-services-account/main.tf +++ b/quickstart/101-cognitive-services-account/main.tf @@ -16,9 +16,9 @@ resource "random_string" "azurerm_cognitive_account_name" { } resource "azurerm_cognitive_account" "cognitive_service" { - name = "CognitiveService-${random_string.azurerm_cognitive_account_name.result}" + name = "AIServices-${random_string.azurerm_cognitive_account_name.result}" location = azurerm_resource_group.rg.location resource_group_name = azurerm_resource_group.rg.name sku_name = var.sku - kind = "CognitiveServices" + kind = "AIServices" }