Update security group ports based on certificate availability
Reasoning: There is a conditional performed that compares the app_port to the lb_port when creating the aws_security_group_rule.ingress_lb_port. It seems that the app_port changed default values between the terraform variables.tf and the action.yaml. This updates action.yaml to use 3000 instead of 80
- Update the port range of the security group ingress rule to
443
if a certificate is available, otherwise80
- Change the default port for the app to
3000
- Change the default port for the load balancer to
443
if a FQDN is provided
[action.yaml]
- Change the default port for the app from
80
to3000
- Change the default port for the load balancer from
80
to443
if a FQDN is provided
[operations/deployment/terraform/security-group.tf] - Change the port range of the ingress security group rule based on the availability of a certificate
- Update the
from_port
andto_port
values to443
if a certificate is available, otherwise to80