-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
42 lines (35 loc) · 930 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
36
37
38
39
40
41
42
variable "vdc_org_name" {}
variable "vdc_group_name" {}
variable "vdc_edge_name" {}
variable "app_port_profiles" {
description = "Map of app port profiles with their corresponding scopes"
type = map(string)
default = {}
}
variable "ip_set_names" {
type = list(string)
default = []
}
variable "dynamic_security_group_names" {
type = list(string)
default = []
}
variable "security_group_names" {
type = list(string)
default = []
}
variable "rules" {
description = "List of rules to apply"
type = list(object({
name = string
direction = string
ip_protocol = string
action = string
enabled = optional(bool)
logging = optional(bool)
source_ids = optional(list(string))
destination_ids = optional(list(string))
app_port_profile_ids = optional(list(string))
}))
default = []
}