-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
42 lines (35 loc) · 916 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
variable "name" {
type = string
description = "Name of the Network to create"
}
variable "ip_range_network" {
type = string
description = "IP Range of the whole Network which must span all included subnets and route destinations"
}
variable "labels" {
type = map(string)
default = {}
description = "User-defined labels (key-value pairs) should be created with"
}
variable "delete_protection" {
type = bool
default = false
description = "Enable or disable delete protection"
}
variable "type" {
type = string
description = "Type of subnet"
}
variable "ip_range_subnet" {
type = list(string)
description = "Range to allocate IPs from"
}
variable "network_zone" {
type = string
description = "Name of network zone"
}
variable "vswitch_id" {
type = number
default = null
description = "ID of the vswitch"
}