From e99ac766b0ff4515ad669497b5a63a28a2f30bcd Mon Sep 17 00:00:00 2001 From: Christopher Baines Date: Wed, 28 Aug 2019 14:36:58 +0100 Subject: Improve the from_port setting in various AWS security groups Thanks to schmie for looking in to this. --- terraform/aws_using_ami/backend/main.tf | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'terraform/aws_using_ami') diff --git a/terraform/aws_using_ami/backend/main.tf b/terraform/aws_using_ami/backend/main.tf index 7025cad..d93317d 100644 --- a/terraform/aws_using_ami/backend/main.tf +++ b/terraform/aws_using_ami/backend/main.tf @@ -96,28 +96,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"] @@ -130,7 +130,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 = [ -- cgit v1.2.3