-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
72 lines (64 loc) · 2.08 KB
/
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
##################################################################################
## Existing network
##################################################################################
variable "use_existing_vnet" {
description = "Flag to enable existing network"
type = bool
default = false
}
variable "vnet_id" {
description = "VPC ID. Used only when use_existing_vnet is enabled"
type = string
validation {
condition = var.vnet_id == "" || var.use_existing_vnet
error_message = "Vnet ID can't be empty if use_existing_vnet is enabled"
}
}
variable "subnet_id" {
description = "Subnet ID. Used only when use_existing_vnet is enabled"
type = string
validation {
condition = var.subnet_id == "" || var.use_existing_vnet
error_message = "Subnet ID can't be empty if use_existing_vnet is enabled"
}
}
##################################################################################
## New network
##################################################################################
variable "vnet_cidr" {
description = "The CIDR block for the VPC."
type = string
}
variable "subnet_cidr" {
description = "Assigns IPv4 subnet"
type = string
}
variable "control_plane_enabled" {
description = "Flag to check Control plane enabled"
type = bool
}
variable "use_for_each" {
description = "Use `for_each` instead of `count` to create multiple resource instances."
default = false
type = bool
}
##################################################################################
## Common
##################################################################################
variable "resource_group_name" {
description = "Azure Resource Group"
type = string
}
variable "cluster_name" {
description = "Cluster name to generate the virtual network name"
type = string
}
variable "location" {
description = "Location to create the vnet"
type = string
}
variable "tags" {
type = map(string)
default = {}
description = "AWS Tags common to all the resources created"
}