-
-
Notifications
You must be signed in to change notification settings - Fork 60
Expand file tree
/
Copy pathvariables-deprecated.tf
More file actions
27 lines (24 loc) · 751 Bytes
/
variables-deprecated.tf
File metadata and controls
27 lines (24 loc) · 751 Bytes
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
variable "allowed_security_groups" {
type = list(string)
default = []
description = <<-EOT
DEPRECATED: Use `allowed_security_group_ids` instead.
A list of Security Group IDs to to be allowed to connect to the broker instance.
EOT
}
variable "use_existing_security_groups" {
type = bool
description = <<-EOT
DEPRECATED: Use `create_security_group` instead.
Historical description: Set to `true` to disable Security Group creation
EOT
default = null
}
variable "existing_security_groups" {
type = list(string)
default = []
description = <<-EOT
DEPRECATED: Use `associated_security_group_ids` instead.
List of existing Security Group IDs to place the broker into.
EOT
}