-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
198 lines (166 loc) · 5.36 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
#Module : LABEL
#Description : Terraform label module variables.
variable "name" {
type = string
default = ""
description = "Name (e.g. `app` or `cluster`)."
}
variable "environment" {
type = string
default = ""
description = "Environment (e.g. `prod`, `dev`, `staging`)."
}
variable "managedby" {
type = string
default = "[email protected]"
description = "ManagedBy, eg 'CloudDrove'."
}
variable "extra_tags" {
type = map(string)
default = null
description = "Variable to pass extra tags."
}
variable "repository" {
type = string
default = ""
description = "Terraform current module repo"
}
variable "label_order" {
type = list(any)
default = ["name", "environment"]
description = "Label order, e.g. sequence of application name and environment `name`,`environment`,'attribute' [`webserver`,`qa`,`devops`,`public`,] ."
}
variable "resource_group_name" {
type = string
description = "The name of the resource group in which to create the network security group."
}
variable "resource_group_location" {
type = string
description = "The Location of the resource group where to create the network security group."
}
variable "enabled" {
type = bool
default = true
description = "Set to false to prevent the module from creating any resources."
}
variable "inbound_rules" {
type = any
default = []
description = "List of objects that represent the configuration of each inbound rule."
}
variable "outbound_rules" {
type = any
default = []
description = "List of objects that represent the configuration of each outbound rule."
}
variable "subnet_ids" {
type = list(string)
default = []
description = "The ID of the Subnet. Changing this forces a new resource to be created."
}
variable "create" {
type = string
default = "30m"
description = "Used when creating the Resource Group."
}
variable "update" {
type = string
default = "30m"
description = "Used when updating the Resource Group."
}
variable "read" {
type = string
default = "5m"
description = "Used when retrieving the Resource Group."
}
variable "delete" {
type = string
default = "30m"
description = "Used when deleting the Resource Group."
}
# Diagnosis Settings Enable
variable "enable_diagnostic" {
type = bool
default = false
description = "Set to false to prevent the module from creating the diagnosys setting for the NSG Resource.."
}
variable "eventhub_name" {
type = string
default = null
description = "Eventhub Name to pass it to destination details of diagnosys setting of NSG."
}
variable "eventhub_authorization_rule_id" {
type = string
default = null
description = "Eventhub authorization rule id to pass it to destination details of diagnosys setting of NSG."
}
variable "log_analytics_workspace_id" {
type = string
default = null
description = "log analytics workspace id to pass it to destination details of diagnosys setting of NSG."
}
variable "log_analytics_destination_type" {
type = string
default = "AzureDiagnostics"
description = "Possible values are AzureDiagnostics and Dedicated, default to AzureDiagnostics. When set to Dedicated, logs sent to a Log Analytics workspace will go into resource specific tables, instead of the legacy AzureDiagnostics table."
}
variable "enable_flow_logs" {
type = bool
default = false
description = "Flag to be set true when network security group flow logging feature is to be enabled."
}
variable "network_watcher_name" {
type = string
default = null
description = "The name of the Network Watcher. Changing this forces a new resource to be created."
}
variable "flow_log_storage_account_id" {
type = string
default = null
description = "The id of storage account in which flow logs will be received. Note: Currently, only standard-tier storage accounts are supported."
}
variable "flow_log_retention_policy_enabled" {
type = bool
default = false
description = "Boolean flag to enable/disable retention."
}
variable "flow_log_retention_policy_days" {
type = number
default = 100
description = "The number of days to retain flow log records."
}
variable "log_analytics_workspace_resource_id" {
type = string
default = null
description = "The resource ID of the attached log analytics workspace."
}
variable "enable_traffic_analytics" {
type = bool
default = false
description = "Boolean flag to enable/disable traffic analytics."
}
variable "flow_log_version" {
type = number
default = 1
description = " The version (revision) of the flow log. Possible values are 1 and 2."
}
variable "logs" {
type = list(map(string))
default = []
description = "List of log categories. Defaults to all available."
}
variable "subnet_association" {
type = bool
default = false
description = "To create subnet association or not"
}
variable "nic_association" {
type = bool
default = false
description = "To create network_interface association or not"
}
variable "nic_ids" {
type = list(string)
default = []
description = "The ID of the nic. Changing this forces a new resource to be created."
}