fix 101-cosmos-db-azure-container-instance example (#159)
This commit is contained in:
@ -1,19 +1,10 @@
|
||||
resource "random_pet" "rg_name" {
|
||||
prefix = var.resource_group_name_prefix
|
||||
}
|
||||
|
||||
resource "azurerm_resource_group" "rg" {
|
||||
name = "${random_pet.rg_name.id}-rg"
|
||||
location = var.resource_group_location
|
||||
name = random_pet.rg_name.id
|
||||
}
|
||||
|
||||
resource "random_integer" "ri" {
|
||||
min = 10000
|
||||
max = 99999
|
||||
}
|
||||
|
||||
resource "azurerm_cosmosdb_account" "vote_cosmos_db" {
|
||||
name = "tfex-cosmos-db-${random_integer.ri.result}"
|
||||
name = "${random_pet.rg_name.id}-${random_integer.ri.result}"
|
||||
location = azurerm_resource_group.rg.location
|
||||
resource_group_name = azurerm_resource_group.rg.name
|
||||
offer_type = "Standard"
|
||||
@ -29,4 +20,41 @@ resource "azurerm_cosmosdb_account" "vote_cosmos_db" {
|
||||
location = azurerm_resource_group.rg.location
|
||||
failover_priority = 0
|
||||
}
|
||||
}
|
||||
|
||||
resource "azurerm_container_group" "main" {
|
||||
name = "${random_pet.rg_name.id}-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-${random_integer.ri.result}"
|
||||
os_type = "Linux"
|
||||
|
||||
container {
|
||||
name = "vote-aci"
|
||||
image = "mcr.microsoft.com/azuredocs/azure-vote-front:cosmosdb"
|
||||
cpu = "0.5"
|
||||
memory = "1.5"
|
||||
ports {
|
||||
port = 80
|
||||
protocol = "TCP"
|
||||
}
|
||||
|
||||
secure_environment_variables = {
|
||||
"COSMOS_DB_ENDPOINT" = azurerm_cosmosdb_account.vote_cosmos_db.endpoint
|
||||
"COSMOS_DB_MASTERKEY" = azurerm_cosmosdb_account.vote_cosmos_db.primary_key
|
||||
"TITLE" = "Azure Voting App"
|
||||
"VOTE1VALUE" = "Cats"
|
||||
"VOTE2VALUE" = "Dogs"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
resource "random_integer" "ri" {
|
||||
min = 10000
|
||||
max = 99999
|
||||
}
|
||||
|
||||
resource "random_pet" "rg_name" {
|
||||
prefix = var.prefix
|
||||
}
|
Reference in New Issue
Block a user