aboutsummaryrefslogtreecommitdiff
path: root/terraform/aws/backend/main.tf
diff options
context:
space:
mode:
Diffstat (limited to 'terraform/aws/backend/main.tf')
-rw-r--r--terraform/aws/backend/main.tf10
1 files changed, 5 insertions, 5 deletions
diff --git a/terraform/aws/backend/main.tf b/terraform/aws/backend/main.tf
index f0ecb1a..e9cc82f 100644
--- a/terraform/aws/backend/main.tf
+++ b/terraform/aws/backend/main.tf
@@ -131,28 +131,28 @@ resource "aws_security_group" "public_webserver" {
vpc_id = "${var.aws_vpc_id}"
ingress {
- from_port = 0
+ from_port = 80
to_port = 80
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}
ingress {
- from_port = 0
+ from_port = 443
to_port = 443
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}
ingress {
- from_port = 0
+ from_port = 8080
to_port = 8080
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
}
ingress {
- from_port = 0
+ from_port = 8443
to_port = 8443
protocol = "tcp"
cidr_blocks = ["0.0.0.0/0"]
@@ -165,7 +165,7 @@ resource "aws_security_group" "ssh_access_from_mini_environment_admin" {
vpc_id = "${var.aws_vpc_id}"
ingress {
- from_port = 0
+ from_port = 22
to_port = 22
protocol = "tcp"
cidr_blocks = [