Created
November 16, 2018 23:01
-
-
Save mtheoryx/831fe15a8f713ea83362912f8dca0bb9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| resource "aws_security_group_rule" "http-ingress" { | |
| description = "Allow port 80 ingress allow-http" | |
| type = "ingress" | |
| from_port = 80 | |
| to_port = 80 | |
| protocol = "tcp" | |
| cidr_blocks = ["0.0.0.0/0"] | |
| security_group_id = "${aws_security_group.allow-http.id}" | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment