Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Adding support for WestUS #60

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion modules/app_aks/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ resource "azurerm_kubernetes_cluster" "default" {
type = "VirtualMachineScaleSets"
vm_size = var.node_pool_vm_size
vnet_subnet_id = var.cluster_subnet_id
zones = ["1", "2"]
zones = var.location == "westus" ? [] : ["1", "2"]
}

identity {
Expand Down
2 changes: 1 addition & 1 deletion modules/storage/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ resource "azurerm_storage_account" "default" {
resource_group_name = var.resource_group_name
location = var.location
account_tier = "Standard"
account_replication_type = "ZRS"
account_replication_type = var.location == "westus" ? "LRS" : "ZRS"
min_tls_version = "TLS1_2"

blob_properties {
Expand Down
Loading