forked from netascode/terraform-aci-nac-aci
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
71 lines (60 loc) · 1.91 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
variable "yaml_directories" {
description = "List of paths to YAML directories."
type = list(string)
default = []
}
variable "yaml_files" {
description = "List of paths to YAML files."
type = list(string)
default = []
}
variable "model" {
description = "As an alternative to YAML files, a native Terraform data structure can be provided as well."
type = map(any)
default = {}
}
variable "manage_access_policies" {
description = "Flag to indicate if access policies should be managed."
type = bool
default = false
}
variable "manage_fabric_policies" {
description = "Flag to indicate if fabric policies should be managed."
type = bool
default = false
}
variable "manage_pod_policies" {
description = "Flag to indicate if pod policies should be managed."
type = bool
default = false
}
variable "manage_node_policies" {
description = "Flag to indicate if node policies should be managed."
type = bool
default = false
}
variable "manage_interface_policies" {
description = "Flag to indicate if interface policies should be managed."
type = bool
default = false
}
variable "managed_interface_policies_nodes" {
description = "List of node IDs for which interface policies should be managed. By default interface policies for all nodes will be managed."
type = list(number)
default = []
}
variable "manage_tenants" {
description = "Flag to indicate if tenants should be managed."
type = bool
default = false
}
variable "managed_tenants" {
description = "List of tenant names to be managed. By default all tenants will be managed."
type = list(string)
default = []
}
variable "write_default_values_file" {
description = "Write all default values to a YAML file. Value is a path pointing to the file to be created."
type = string
default = ""
}