Fix invalid count index (#5469)
This commit is contained in:
parent
94956ebde9
commit
3c3ebc05cc
1 changed files with 1 additions and 1 deletions
|
@ -43,7 +43,7 @@ resource "openstack_networking_secgroup_rule_v2" "bastion" {
|
||||||
port_range_min = "22"
|
port_range_min = "22"
|
||||||
port_range_max = "22"
|
port_range_max = "22"
|
||||||
remote_ip_prefix = "${var.bastion_allowed_remote_ips[count.index]}"
|
remote_ip_prefix = "${var.bastion_allowed_remote_ips[count.index]}"
|
||||||
security_group_id = "${openstack_networking_secgroup_v2.bastion[count.index].id}"
|
security_group_id = "${openstack_networking_secgroup_v2.bastion[0].id}"
|
||||||
}
|
}
|
||||||
|
|
||||||
resource "openstack_networking_secgroup_v2" "k8s" {
|
resource "openstack_networking_secgroup_v2" "k8s" {
|
||||||
|
|
Loading…
Reference in a new issue