-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
36 lines (32 loc) · 1.32 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
/*_____________________________________________________________________________________________________________________
Model Data from Top Level Module
_______________________________________________________________________________________________________________________
*/
variable "system_settings" {
description = "System Settings YAML Model data."
type = any
}
/*_____________________________________________________________________________________________________________________
System Settings Sensitive Variables
_______________________________________________________________________________________________________________________
*/
variable "system_sensitive" {
default = {
global_aes_encryption_settings = {
passphrase = {}
}
}
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({
global_aes_encryption_settings = object({
passphrase = map(string)
})
})
}