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:
4949 app_port :
5050 description : ' Port to expose for the app'
5151 required : false
52- default : ' 80 '
52+ default : ' 3000 '
5353 lb_port :
5454 description : ' Load balancer listening port. Defaults to 80 if NO FQDN provided, 443 if FQDN provided'
5555 required : false
Original file line number Diff line number Diff line change @@ -36,7 +36,7 @@ resource "aws_security_group_rule" "ingress_ssh" {
3636resource "aws_security_group_rule" "ingress_lb_port" {
3737 count = var. lb_port != var. app_port ? 1 : 0
3838 type = " ingress"
39- description = " ${ var . aws_resource_identifier } - Port"
39+ description = " ${ var . aws_resource_identifier } - lb Port"
4040 from_port = tonumber (var. lb_port != " " ? var. lb_port : ( local. cert_available ? 443 : 80 ) )
4141 to_port = tonumber (var. lb_port != " " ? var. lb_port : ( local. cert_available ? 443 : 80 ) )
4242 protocol = " tcp"
You can’t perform that action at this time.
0 commit comments