-
Notifications
You must be signed in to change notification settings - Fork 11
/
variables.tf
62 lines (48 loc) · 1.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
variable "owner" {
description = "Owner name of the resource"
}
variable "purpose" {
description = "Purpose of the resource"
}
variable "location" {
description = "Location in which resource needs to be spinned up"
}
variable "org" {
description = "Org name / Client name"
}
variable "owner_custom" {
description = "Short name of owner"
}
variable "purpose_custom" {
description = "Custom purpose"
}
variable "address_space" {
type = list
description = "VNET CIDR Range"
}
variable "subnets" {
description = "A map to create multiple subnets"
type = map(object({
name = string
address_space = list(string)
subnet_delegation = string
}))
}
variable "nsg" {
description = "A map of NSGs"
type = map(object({
name = string
}))
}
variable "private_link_subnet" {
description = "ID of Private link Subnet"
}
variable "fw_subnet_id" {
description = "ID of firewall Subnet"
}
variable "rt_public_subnet" {
description = "ID of public ADB subnet"
}
variable "rt_private_subnet" {
description = "ID of private ADB subnet"
}