25 lines
697 B
HCL
25 lines
697 B
HCL
resource "random_pet" "rg_name" {
|
|
prefix = var.resource_group_name_prefix
|
|
}
|
|
|
|
resource "azurerm_resource_group" "rg" {
|
|
name = random_pet.rg_name.id
|
|
location = var.resource_group_location
|
|
}
|
|
|
|
resource "random_string" "azurerm_cognitive_account_name" {
|
|
length = 13
|
|
lower = true
|
|
numeric = false
|
|
special = false
|
|
upper = false
|
|
}
|
|
|
|
resource "azurerm_cognitive_account" "cognitive_service" {
|
|
name = "CognitiveService-${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"
|
|
}
|