Skip to content
This repository has been archived by the owner on Jun 16, 2023. It is now read-only.

IN-2049 security_group_rule resource cidr_blocks argument must be a list #7

Merged
merged 1 commit into from
Aug 25, 2020
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -284,7 +284,7 @@ resource "aws_security_group_rule" "ingress_share_keys_web_server_cidrs" {
from_port = 443
to_port = 443
protocol = "TCP"
cidr_blocks = var.share_keys_allowed_cidrs[count.index]
cidr_blocks = [var.share_keys_allowed_cidrs[count.index]]
security_group_id = aws_security_group.bastion_host_security_group.id
}

Expand Down