-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path00_vars_network.tf
53 lines (50 loc) · 1.2 KB
/
00_vars_network.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
# NETWORK VARS
## Storage network
variable "storage_net_name" {
description = "Storage network name"
type = string
default = "lab-storage"
}
variable "storage_net_cidr" {
description = "Storage network name"
type = string
default = "10.0.100.0/24"
}
## Private network
variable "private_net_name" {
description = "private network name"
type = string
default = "lab-private"
}
variable "private_net_cidr" {
description = "private network name"
type = string
default = "10.0.101.0/24"
}
## Public network
variable "public_net_name" {
description = "public network name"
type = string
default = "lab-public"
}
variable "public_net_cidr" {
description = "public network name"
type = string
default = "10.0.102.0/24"
}
variable "public_net_dns" {
description = "DNS servers for public network"
type = list
default = ["8.8.8.8", "8.8.4.4"]
}
## VM_Public network
variable "vm_public_net_name" {
description = "vm_public network name"
type = string
default = "lab-vm_public"
}
variable "vm_public_net_cidr" {
description = "vm_public network name"
type = string
default = "10.44.0.0/24"
}