-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
38 lines (31 loc) · 759 Bytes
/
variables.tf
File metadata and controls
38 lines (31 loc) · 759 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
variable "resource_group_name" {
description = "Name of the resource group"
type = string
}
variable "location" {
description = "Azure region"
type = string
}
variable "cluster_name" {
description = "Name of the AKS cluster"
type = string
}
variable "subnet_id" {
description = "ID of the subnet where AKS should be deployed"
type = string
}
variable "node_count" {
description = "Number of nodes in the default node pool"
type = number
default = 1
}
variable "node_vm_size" {
description = "Size of the node VMs"
type = string
default = "Standard_D2s_v3"
}
variable "tags" {
description = "Tags to apply to all resources"
type = map(string)
default = {}
}