File tree Expand file tree Collapse file tree 2 files changed +5
-2
lines changed
environments/skeleton/{{cookiecutter.environment}}/tofu Expand file tree Collapse file tree 2 files changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ resource "openstack_networking_port_v2" "control" {
25
25
26
26
fixed_ip {
27
27
subnet_id = data. openstack_networking_subnet_v2 . cluster_subnet [each . key ]. id
28
- ip_address = ( var. control_ip_addresses != {}) ? var. control_ip_addresses [each . key ]: null
28
+ ip_address = var. control_ip_addresses != {} ? var. control_ip_addresses [each . key ] : null
29
29
}
30
30
31
31
no_security_groups = lookup (each. value , " no_security_groups" , false )
Original file line number Diff line number Diff line change @@ -26,7 +26,10 @@ variable "key_pair" {
26
26
27
27
variable "control_ip_addresses" {
28
28
type = map (string )
29
- description = " Mapping of fixed IP addresses for control node, keyed by network name"
29
+ description = <<- EOT
30
+ Mapping of fixed IP addresses for control node, keyed by network name.
31
+ The default means the cloud will select an address.
32
+ EOT
30
33
default = {}
31
34
}
32
35
You can’t perform that action at this time.
0 commit comments