revert deletion of aci.tf to fix broken doc build pipeline (#166)
Co-authored-by: zjhe <hezijie@microsoft.com>
This commit is contained in:
parent
82ec8c1eab
commit
7afaf61150
27
quickstart/101-cosmos-db-azure-container-instance/aci.tf
Normal file
27
quickstart/101-cosmos-db-azure-container-instance/aci.tf
Normal file
@ -0,0 +1,27 @@
|
||||
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"
|
||||
}
|
||||
}
|
||||
}
|
@ -22,34 +22,6 @@ resource "azurerm_cosmosdb_account" "vote_cosmos_db" {
|
||||
}
|
||||
}
|
||||
|
||||
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
|
||||
|
Loading…
x
Reference in New Issue
Block a user