I have work to solve this problem, we can configure the load balancing ( Via the GCLOUD command line ) " Interface Configuration " with 443 and an SSL certificate has been added.
List SslCertificate Resources
gcloud compute ssl-certificates list
Configure SSL Certificate Resource
gcloud compute ssl-certificates create [SSL_CERTIFICATE_NAME] \ --certificate [CRT_FILE_PATH] \ --private-key [KEY_FILE_PATH]
List resources target-https-proxies
gcloud compute target-https-proxies list
Update Target HTTPS Proxy
gcloud compute target-https-proxies update [PROXY_NAME] \ --ssl-certificate [SSL_CERTIFICATE_NAME]
reserve a global static IP address [optional step]
gcloud compute addresses create [STAIC_IP_NAME]
Configure Global Forwarding Rule
gcloud compute forwarding-rules create [RULE_NAME] \ --global \ --target-https-proxies [PROXY_NAME] \ --address [STAIC_IP_NAME] \ --port-range 443
source share