Skip to content

Commit

Permalink
Merge branch 'sebastian/prod-2721-think-up-a-test-strategy-for-plural…
Browse files Browse the repository at this point in the history
…-up' of github.com:pluralsh/plural-cli into sebastian/prod-2721-think-up-a-test-strategy-for-plural-up
  • Loading branch information
floreks committed Nov 27, 2024
2 parents 596d80c + a0db640 commit f697e20
Showing 1 changed file with 24 additions and 24 deletions.
48 changes: 24 additions & 24 deletions test.tf
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ terraform {
required_providers {
azurerm = {
source = "hashicorp/azurerm"
version = "3.40.0"
version = "3.106.1" # 3.40.0 doesn't work
}
}
}
Expand All @@ -28,26 +28,26 @@ resource "azurerm_resource_group" "group" {
location = "polandcentral"
}

# module "aks" {
# source = "Azure/aks/azurerm"
# version = "9.2.0"
#
# kubernetes_version = var.kubernetes_version
# cluster_name = var.cluster_name
# resource_group_name = local.resource_group.name
# prefix = var.cluster_name
# os_disk_size_gb = 60
# sku_tier = "Standard"
# rbac_aad = false
# vnet_subnet_id = azurerm_subnet.network.id
# node_pools = {for name, pool in var.node_pools : name => merge(pool, {name = name, vnet_subnet_id = azurerm_subnet.network.id})}
#
# ebpf_data_plane = "cilium"
# network_plugin_mode = "overlay"
# network_plugin = "azure"
#
# role_based_access_control_enabled = true
#
# workload_identity_enabled = var.workload_identity_enabled
# oidc_issuer_enabled = var.workload_identity_enabled
# }
module "aks" {
source = "Azure/aks/azurerm"
version = "7.5.0"

kubernetes_version = "1.22"
cluster_name = "marcin"
resource_group_name = azurerm_resource_group.group.name
prefix = "marcin"
os_disk_size_gb = 60
sku_tier = "Standard"
rbac_aad = false
# vnet_subnet_id = azurerm_subnet.network.id
# node_pools = {for name, pool in var.node_pools : name => merge(pool, {name = name, vnet_subnet_id = azurerm_subnet.network.id})}

ebpf_data_plane = "cilium"
network_plugin_mode = "overlay"
network_plugin = "azure"

role_based_access_control_enabled = true

workload_identity_enabled = true
oidc_issuer_enabled = true
}

0 comments on commit f697e20

Please sign in to comment.