Commit 93349b7a authored by A-Gordon's avatar A-Gordon

Changed SG protocols

parent a4e0268c
...@@ -79,14 +79,14 @@ resource "aws_security_group" "main" { ...@@ -79,14 +79,14 @@ resource "aws_security_group" "main" {
ingress { ingress {
from_port = 80 from_port = 80
to_port = 80 to_port = 80
protocol = -1 protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"] cidr_blocks = ["0.0.0.0/0"]
} }
ingress { ingress {
from_port = 443 from_port = 443
to_port = 443 to_port = 443
protocol = -1 protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"] cidr_blocks = ["0.0.0.0/0"]
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment