Skip to content

Commit

Permalink
docs/resource/aws_security_group: Update cidr_blocks value to list (#…
Browse files Browse the repository at this point in the history
  • Loading branch information
tndavaloz authored Jul 27, 2020
1 parent 0e840b5 commit 172839d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion website/docs/r/security_group_rule.html.markdown
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ resource "aws_security_group_rule" "example" {
from_port = 0
to_port = 65535
protocol = "tcp"
cidr_blocks = aws_vpc.example.cidr_block
cidr_blocks = [aws_vpc.example.cidr_block]
security_group_id = "sg-123456"
}
```
Expand Down

0 comments on commit 172839d

Please sign in to comment.