apiVersion: extensions/v1beta1
kind: Ingress
metadata:
name: redacted
namespace: default
annotations:
spec:
rules:
http:
paths:
- path: /*
backend:
serviceName: ssl-redirect
servicePort: use-annotation
- path: /*
backend:
serviceName: redacted
servicePort: 80
My questions are as follows:
1. Do I need to specify a new "host" entry in my yaml above to handle this?
2. What is recommended in Route53 for this? A or CNAME record? Use an Alias pointing to my ALB or just "Value" and if so, what specifically?
Thanks in advance.