-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathvariables.tf
57 lines (44 loc) · 1.1 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
variable "vpc_client_subnet_cidr" {
description = "Subnet CIDR for VPC Client"
type = string
}
variable "vpc_node_subnet_cidr" {
description = "Subnet CIDR for VPC Node"
type = string
}
variable "region" {
description = "region where to deploy"
type = string
}
variable "os_image" {
description = "name of the OS image to use"
}
variable "ssh_firewall_allow_range" {
description = "list of IP's allowed to SSH in"
type = list(string)
}
variable "zone" {
description = "zone where to deploy"
type = string
}
variable "node_port" {
description = "Port used for nodes communications"
type = number
default = 9701
}
variable "client_port" {
description = "Port used for communications to the client"
type = number
default = 9702
}
variable "node_name" {
type = string
}
variable "snapshot_schedule_policy_name" {
description = "snapshot policy name to associate with the Datadisk"
type = string
}
variable "deletion_protection" {
description = "true or false to activate delete_protection"
type = bool
}