Remove variables.tf

This commit is contained in:
s0dy
2018-11-01 14:37:02 +01:00
parent 31a38b9043
commit 4601f095c8
8 changed files with 240 additions and 119 deletions

View File

@ -24,6 +24,20 @@ resource "aws_security_group" "allow_ssh" {
resource "aws_security_group" "allow_http" {
name = "allow http"
ingress {
from_port = 80
to_port = 80
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}
ingress {
from_port = 443
to_port = 443
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}
egress {
from_port = 80
to_port = 80