That is not done specific from Pulumi
If you want L7 load balancing you need to create the GCP certificate resources and link them to the HTTPS forwarding rule
If you want L4 load balancing you need something to manage the certificate inside of your cluster, normally cert-manager with a in-cluster L7 LB like nginx-ingress or istio
f
fierce-memory-34976
09/15/2020, 1:01 PM
So, I can't do something so the SSL termination happens in the app running in the pod(s) itself?
g
green-school-95910
09/15/2020, 4:17 PM
You can
If you create a service with type load balancer you'll get a L4 LB directly to the service
f
fierce-memory-34976
09/17/2020, 8:05 AM
Thank you Luiz, you helped me understand the possible solutions for my problem.