We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e8c833b commit 6468ad6Copy full SHA for 6468ad6
terraform/azure/aks2.tf
@@ -0,0 +1,25 @@
1
+resource azurerm_kubernetes_cluster "k8s_cluster" {
2
+ dns_prefix = "terragoat-${var.environment}"
3
+ location = var.location
4
+ name = "terragoat-aks-${var.environment}"
5
+ resource_group_name = azurerm_resource_group.example.name
6
+ identity {
7
+ type = "SystemAssigned"
8
+ }
9
+ default_node_pool {
10
+ name = "default"
11
+ vm_size = "Standard_D2_v2"
12
+ node_count = 2
13
14
+ addon_profile {
15
+ oms_agent {
16
+ enabled = false
17
18
+ kube_dashboard {
19
+ enabled = true
20
21
22
+ role_based_access_control {
23
24
25
+}
0 commit comments