-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvariables.tf
46 lines (40 loc) · 895 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
41
42
43
44
45
46
variable "subscription_id" {
type = string
description = "Sets the Subscription ID"
}
variable "location" {
type = object({
code = string
name = string
})
description = "Location for Resource Group and Azure Kubernetes"
}
variable "application_code" {
type = string
description = "Application code for Resource Group and Azure Kubernetes"
}
variable "environment" {
type = string
description = "Environment for Resource Group and Azure Kubernetes"
}
variable "vnet" {
type = object({
address = string
})
description = "Sets the Virtual Network"
}
variable "subnet" {
type = object({
address = string
})
description = "Sets the Sub Network"
}
variable "aks" {
type = object({
service_cidr = string
dns_service_ip = string
docker_bridge_cidr = string
vm_size = string
})
description = "Sets the Azure Kubernetes Services"
}