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 9786b23 commit 918b353Copy full SHA for 918b353
1 file changed
infra/terraform/main.tf
@@ -67,7 +67,7 @@ data "http" "current_ip" {
67
68
locals {
69
name = "${var.environment}${random_pet.example.id}${random_integer.example.result}"
70
- aks_node_pool_vm_size = var.aks_node_pool_vm_size
+ aks_node_pool_vm_size = var.aks_node_pool_vm_size != "" ? var.aks_node_pool_vm_size : "Standard_D2s_v4"
71
deploy_azure_cosmosdb = var.deploy_azure_cosmosdb == "true" ? true : false
72
default_cosmosdb_account_kind = "GlobalDocumentDB"
73
cosmosdb_account_kind = var.cosmosdb_account_kind != "" ? var.cosmosdb_account_kind : local.default_cosmosdb_account_kind
0 commit comments