-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
35 lines (29 loc) · 977 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
variable "network_rule_comment" {
description = "A comment to add to the network rule. Defaults to a generated comment if not provided."
type = string
default = null
}
variable "network_rule_database" {
description = "The database where the network rule will be applied."
type = string
}
variable "network_rule_name" {
description = "The name of the network rule to be created."
type = string
}
variable "network_rule_schema" {
description = "The schema within the database where the network rule will be applied."
type = string
}
variable "network_rule_traffic_mode" {
description = "The mode of traffic for the network rule (e.g., ALLOW, DENY)."
type = string
}
variable "network_rule_type" {
description = "The type of network rule."
type = string
}
variable "network_rule_value_list" {
description = "A list of values (e.g., IP addresses) for the network rule."
type = list(string)
}