Skip to content

Commit

Permalink
Update AKS TF module (#70)
Browse files Browse the repository at this point in the history
  • Loading branch information
dtzar authored Jul 9, 2024
1 parent 0d54034 commit ad2d79a
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 10 deletions.
4 changes: 2 additions & 2 deletions terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ module "network" {

module "aks" {
source = "Azure/aks/azurerm"
version = "8.0.0"
version = "9.1.0"
resource_group_name = azurerm_resource_group.this.name
location = var.location
kubernetes_version = var.kubernetes_version
Expand Down Expand Up @@ -210,7 +210,7 @@ module "gitops_bridge_bootstrap" {
apps = local.argocd_apps
argocd = {
namespace = local.argocd_namespace
chart_version = "6.7.14"
chart_version = "7.3.4"
}
}

Expand Down
8 changes: 4 additions & 4 deletions terraform/provider.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,19 +2,19 @@ terraform {
required_providers {
azuread = {
source = "hashicorp/azuread"
version = "~> 2.47.0"
version = "~> 2.53.1"
}
azurerm = {
source = "hashicorp/azurerm"
version = "~> 3.56"
version = "~> 3.111"
}
random = {
source = "hashicorp/random"
version = "~> 3.1"
version = "~> 3.6"
}
helm = {
source = "hashicorp/helm"
version = ">= 2.10.1"
version = ">= 2.13"
}
}
required_version = ">= 1.1.0"
Expand Down
8 changes: 4 additions & 4 deletions terraform/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ variable "location" {

variable "agents_size" {
description = "Specifies the default virtual machine size for the Kubernetes agents"
default = "Standard_DS2_v2"
default = "Standard_D2s_v3"
type = string
}

Expand Down Expand Up @@ -167,7 +167,7 @@ variable "enable_host_encryption" {
variable "log_analytics_workspace_enabled" {
description = "Specifies whether Log Analytics is enabled"
type = bool
default = true
default = false
}

variable "agents_min_count" {
Expand All @@ -191,7 +191,7 @@ variable "agents_max_pods" {
variable "azure_policy_enabled" {
description = "Should the Azure Policy Add-On be enabled? For more details please visit Understand Azure Policy for Azure Kubernetes Service"
type = bool
default = true
default = false
}

variable "network_policy" {
Expand All @@ -203,7 +203,7 @@ variable "network_policy" {
variable "microsoft_defender_enabled" {
description = "Should Microsoft Defender for Containers be enabled? For more details please visit Microsoft Defender for Containers"
type = bool
default = true
default = false
}

variable "net_profile_dns_service_ip" {
Expand Down

0 comments on commit ad2d79a

Please sign in to comment.