-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
40 lines (33 loc) · 816 Bytes
/
variables.tf
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
38
39
40
variable "prefix" {
default = "se"
description = "A prefix used for all resources"
}
variable "location" {
default = "West Europe"
description = "The Azure Region in which all resources should be provisioned"
}
variable "resource_group_name" {
default = "rg-services-01"
description = "Name of ressource groupe"
}
variable "env" {
default = "Services"
description = "The Tag value for Team"
}
variable "owner" {
default = "Emmanuel COLUSSI"
description = "The Tag value for Owner"
}
variable "k8sversion" {
default = "1.24.3"
type = string
description = "The version of Kubernetes"
}
variable "vm_type" {
default = "Standard_B4ms"
description = "The virtual machine sizes"
}
variable "agent_count" {
default = 2
description = "Number of worker node"
}