-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
42 lines (38 loc) · 1.39 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
/*_____________________________________________________________________________________________________________________
Model Data from Top Level Module
_______________________________________________________________________________________________________________________
*/
variable "access" {
description = "Access Model data."
type = any
}
/*_____________________________________________________________________________________________________________________
Access Sensitive Variables
_______________________________________________________________________________________________________________________
*/
variable "access_sensitive" {
default = {
mcp_instance_policy_default = {
key = {}
}
virtual_networking = {
password = {}
}
}
description = <<EOT
Note: Sensitive Variables cannot be added to a for_each loop so these are added seperately.
* mcp_instance_policy_default: MisCabling Protocol Instance Settings.
- key: The key or password used to uniquely identify this configuration object.
* virtual_networking: ACI to Virtual Infrastructure Integration.
- password: Username/Password combination to Authenticate to the Virtual Infrastructure.
EOT
sensitive = true
type = object({
mcp_instance_policy_default = object({
key = map(string)
})
virtual_networking = object({
password = map(string)
})
})
}