-
Notifications
You must be signed in to change notification settings - Fork 1.7k
Expand file tree
/
Copy pathc6-01-vnet-input-variables.tf
More file actions
72 lines (60 loc) · 1.7 KB
/
c6-01-vnet-input-variables.tf
File metadata and controls
72 lines (60 loc) · 1.7 KB
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
# Virtual Network, Subnets and Subnet NSG's
## Virtual Network
variable "vnet_name" {
description = "Virtual Network name"
type = string
default = "vnet-default"
}
variable "vnet_address_space" {
description = "Virtual Network address_space"
type = list(string)
default = ["10.0.0.0/16"]
}
# Web Subnet Name
variable "web_subnet_name" {
description = "Virtual Network Web Subnet Name"
type = string
default = "websubnet"
}
# Web Subnet Address Space
variable "web_subnet_address" {
description = "Virtual Network Web Subnet Address Spaces"
type = list(string)
default = ["10.0.1.0/24"]
}
# App Subnet Name
variable "app_subnet_name" {
description = "Virtual Network App Subnet Name"
type = string
default = "appsubnet"
}
# App Subnet Address Space
variable "app_subnet_address" {
description = "Virtual Network App Subnet Address Spaces"
type = list(string)
default = ["10.0.11.0/24"]
}
# Database Subnet Name
variable "db_subnet_name" {
description = "Virtual Network Database Subnet Name"
type = string
default = "dbsubnet"
}
# Database Subnet Address Space
variable "db_subnet_address" {
description = "Virtual Network Database Subnet Address Spaces"
type = list(string)
default = ["10.0.21.0/24"]
}
# Bastion / Management Subnet Name
variable "bastion_subnet_name" {
description = "Virtual Network Bastion Subnet Name"
type = string
default = "bastionsubnet"
}
# Bastion / Management Subnet Address Space
variable "bastion_subnet_address" {
description = "Virtual Network Bastion Subnet Address Spaces"
type = list(string)
default = ["10.0.100.0/24"]
}