【发布时间】:2019-09-08 01:50:42
【问题描述】:
我正在尝试让多个微服务在单个项目的单个应用引擎上运行。我正在关注 GCP 的官方文档
https://cloud.google.com/appengine/docs/standard/python3/mapping-custom-domains
当我尝试创建这样的通配符映射时
gcloud app domain-mappings create '*.example.com'
以便 GCP 后端引擎可以相应地匹配请求:
[VERSION_ID].[SERVICE_ID].example.com
我收到以下错误
ERROR: (gcloud.app.domain-mappings.create) INVALID_ARGUMENT: A managed certificate cannot be created on a wildcard domain mapping. Set `ssl_management_type` to `MANUAL` and retry the domain mapping creation. You can manually create an SSL certificate with `AuthorizedCertificates.CREATE` and map it to this domain mapping with `AuthorizedCertificates.UPDATE`.
有人可以帮忙吗?
【问题讨论】:
标签: google-app-engine google-cloud-platform