Skip to content
Snippets Groups Projects
Commit 3c3ebc05 authored by Kessler's avatar Kessler Committed by Kubernetes Prow Robot
Browse files

Fix invalid count index (#5469)

parent 94956ebd
No related branches found
No related tags found
No related merge requests found
......@@ -43,7 +43,7 @@ resource "openstack_networking_secgroup_rule_v2" "bastion" {
port_range_min = "22"
port_range_max = "22"
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" {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment