Skip to content

Commit

Permalink
Merge pull request #2 from adamrushuk/bump-default-versions
Browse files Browse the repository at this point in the history
Bumped AKS default to v1.17.16 and azurerm to v2.46.1
  • Loading branch information
adamrushuk authored Feb 7, 2021
2 parents 092b300 + 5b6e528 commit f203d48
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions examples/basic/main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
provider "azurerm" {
version = "2.37.0"
version = "2.46.1"
features {}
}

Expand All @@ -13,7 +13,7 @@ locals {
# version used for both main AKS API service, and default node pool
# https://github.com/Azure/AKS/releases
# az aks get-versions --location uksouth --output table
kubernetes_version = "1.16.15"
kubernetes_version = "1.17.16"
location = "uksouth"
resource_group_name = "${random_string.aks.result}-rg-azurerm-kubernetes-cluster"
name = "${random_string.aks.result}-aks-cluster"
Expand Down
4 changes: 2 additions & 2 deletions test/main.tf
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# Test AKS module
provider "azurerm" {
version = "2.44.0"
version = "2.46.1"
features {}
}

locals {
# version used for both main AKS API service, and default node pool
# https://github.com/Azure/AKS/releases
# az aks get-versions --location uksouth --output table
kubernetes_version = "1.16.15"
kubernetes_version = "1.17.16"
prefix = "rush"
location = "uksouth"
resource_group_name = "${local.prefix}-rg-azurerm-kubernetes-cluster"
Expand Down
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ variable "aks_admin_group_member_name" {
variable "kubernetes_version" {
description = "Version for both main AKS API service, and default node pool"
type = string
default = "1.16.15"
default = "1.17.16"
}

variable "sla_sku" {
Expand Down

0 comments on commit f203d48

Please sign in to comment.