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" {
2525
2626 fixed_ip {
2727 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
2929 }
3030
3131 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" {
2626
2727variable "control_ip_addresses" {
2828 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
3033 default = {}
3134}
3235
You can’t perform that action at this time.
0 commit comments