Skip to content

Commit

Permalink
review comments
Browse files Browse the repository at this point in the history
  • Loading branch information
nellyk committed Jan 26, 2024
1 parent 0c17ae8 commit 72eecd6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/default/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ module "naming" {
# This is required for resource modules
resource "azurerm_resource_group" "this" {
location = "eastus"
location = module.regions.regions[random_integer.region_index.result].name
name = module.naming.resource_group.name_unique
}
Expand Down
2 changes: 1 addition & 1 deletion examples/default/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ module "naming" {

# This is required for resource modules
resource "azurerm_resource_group" "this" {
location = "eastus"
location = module.regions.regions[random_integer.region_index.result].name
name = module.naming.resource_group.name_unique
}

Expand Down
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ resource "azurerm_kubernetes_cluster" "this" {
# https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/kubernetes_cluster - vnet intergration in preview
role_based_access_control_enabled = true
sku_tier = "Standard"
tags = merge(var.tags)
tags = var.tags
workload_identity_enabled = true

default_node_pool {
Expand Down

0 comments on commit 72eecd6

Please sign in to comment.