File tree Expand file tree Collapse file tree 1 file changed +2
-18
lines changed Expand file tree Collapse file tree 1 file changed +2
-18
lines changed Original file line number Diff line number Diff line change @@ -43,36 +43,20 @@ module "security_group" {
43
43
description = " Allow PostgreSQL traffic."
44
44
}
45
45
]
46
-
46
+
47
47
new_sg_egress_rules_with_cidr_blocks = [
48
48
{
49
49
rule_count = 1
50
50
from_port = 443
51
51
protocol = " tcp"
52
52
to_port = 443
53
- cidr_blocks = [" 0.0.0.0/0" ] # Allow only HTTPS outbound traffic
53
+ cidr_blocks = [" 0.0.0.0/0" ] # Allow only HTTPS outbound traffic
54
54
description = " Allow outbound HTTPS traffic."
55
55
}
56
56
]
57
-
58
-
59
-
60
-
61
- # # EGRESS Rules
62
- # new_sg_egress_rules_with_cidr_blocks = [
63
- # {
64
- # rule_count = 1
65
- # from_port = 0
66
- # protocol = "-1"
67
- # to_port = 0
68
- # cidr_blocks = ["0.0.0.0/0"]
69
- # description = "Allow all outbound traffic."
70
- # }
71
- # ]
72
57
73
58
}
74
59
75
-
76
60
# Define Subnet module
77
61
module "public_subnet" {
78
62
source = " clouddrove/subnet/aws"
You can’t perform that action at this time.
0 commit comments