Service annotations not working in 1.3 and 1.4 on EKS

Asking for help? Comment out what you need so we can get more information to help you!

Cluster information:

Kubernetes version: 1.13 and 1.14
Cloud being used: AWS
Installation method: Terraform
Host OS: Amazon Linux 2
CNI and version: 1.5.3
CRI and version:

Hi,
Are my annotations in the service below are currently supported in k8s 1.13 and 1.14?
When deployed in 1.13 and 1.14 on EKS, the AWS network load balancers come up but none of the annotations work (except aws-load-balancer-type).

apiVersion: v1
kind: Service
metadata:
name: bluebee
annotations:
service.beta.kubernetes.io/aws-load-balancer-type: “nlb”
service.beta.kubernetes.xx/aws-load-balancer-eip-allocations: “eipalloc-079d,eipalloc-04b921,eipalloc-0a38”
service.beta.kubernetes.xx/aws-load-balancer-subnets: “subnet-03b7f82f7,subnet-0b040ac**,subnet***********0”
service.beta.kubernetes.xx/aws-load-balancer-access-log-enabled: “true”
service.beta.kubernetes.xx/aws-load-balancer-access-log-emit-interval: “60”
service.beta.kubernetes.xx/aws-load-balancer-access-log-s3-bucket-name: “bluebee-live-logs”
service.beta.kubernetes.xx/aws-load-balancer-access-log-s3-bucket-prefix: “nlb-logs/devops/dev”
service.beta.kubernetes.xx/aws-load-balancer-cross-zone-load-balancing-enabled: “true”
service.beta.kubernetes.xx/aws-load-balancer-backend-protocol: “ssl”
service.beta.kubernetes.xx/aws-load-balancer-ssl-cert: “arn:aws:acm:eu-west-1:******:certificate/8a4c1444--be1a-ec388157be40”
service.beta.kubernetes.xx/aws-load-balancer-ssl-negotiation-policy: “ELBSecurityPolicy-2016-08”
labels:
app: bluebee
spec:
ports:
- name: http
port: 8080
- name: https
port: 9990
selector:
app: bluebee
type: LoadBalancer
loadBalancerSourceRanges:
- 172.26.0.0/16

Replacing service.beta.kubernetes.io with service.beta.kubernetes.xx above. Otherwise, form can’t submit.