How to attach a subdomain to a backend service usi...
# general
c
How to attach a subdomain to a backend service using Pulumi? With gcloud, these are my steps:
Copy code
gcloud compute ssl-certificates create $CERT_NAME \
 --domains=${SUBDOMAIN}.<http://pinecone.io|pinecone.io>
gcloud compute target-https-proxies create $HTTPS_PROXY_NAME \
 --ssl-certificates=$CERT_NAME \
 --url-map=$URLMAP_NAME
gcloud compute forwarding-rules create --global $FORWARDING_RULE_NAME \
 --target-https-proxy=$HTTPS_PROXY_NAME \
 --address=$SERVICE_IP \
 --ports=443
However, with Pulumi, I cannot see any field for specifying subdomain, be it in ssl certificate, target https proxy, or, in global forwarding rule.