Merge #8505: correct mistake in example for aws_ip_ranges data source

This commit is contained in:
Martin Atkins 2016-08-27 07:28:58 -07:00 committed by GitHub
commit 39d68025a5
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ resource "aws_security_group" "from_europe" {
from_port = "443"
to_port = "443"
protocol = "tcp"
cidr_blocks = [ "${data.aws_ip_ranges.european_ec2.blocks}" ]
cidr_blocks = [ "${data.aws_ip_ranges.european_ec2.cidr_blocks}" ]
}
tags {