File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed
operations/deployment/terraform Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -49,7 +49,7 @@ inputs:
49
49
app_port :
50
50
description : ' Port to expose for the app'
51
51
required : false
52
- default : ' 80 '
52
+ default : ' 3000 '
53
53
lb_port :
54
54
description : ' Load balancer listening port. Defaults to 80 if NO FQDN provided, 443 if FQDN provided'
55
55
required : false
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ resource "aws_security_group_rule" "ingress_ssh" {
36
36
resource "aws_security_group_rule" "ingress_lb_port" {
37
37
count = var. lb_port != var. app_port ? 1 : 0
38
38
type = " ingress"
39
- description = " ${ var . aws_resource_identifier } - Port"
39
+ description = " ${ var . aws_resource_identifier } - lb Port"
40
40
from_port = tonumber (var. lb_port != " " ? var. lb_port : ( local. cert_available ? 443 : 80 ) )
41
41
to_port = tonumber (var. lb_port != " " ? var. lb_port : ( local. cert_available ? 443 : 80 ) )
42
42
protocol = " tcp"
You can’t perform that action at this time.
0 commit comments