云部署pipe理器:内部负载均衡器创build问题

我正在使用以下代码尝试使用以下代码通过Deployment Manager创build内部负载平衡器

- name: {{ env["name"] }}-port389-healthcheck type: compute.v1.healthChecks properties: type: tcp tcpHealthCheck: { port: 389 } - name: {{ env["name"] }}-port389-backend-service type: compute.beta.backendService properties: healthChecks: - $(ref.{{ env["name"] }}-port389-healthcheck.selfLink) backends: - group: $(ref.{{ env['name'] }}-master-instance-groups-managed.instanceGroup) - group: $(ref.{{ env['name'] }}-slave-instance-groups-managed.instanceGroup) protocol: TCP region: {{ properties['region'] }} loadBalancingScheme: INTERNAL - name: {{ env["name"] }}-port389-forwarding-rule type: compute.beta.forwardingRule properties: loadBalancingScheme: INTERNAL ports: - 389 network: default region: {{ properties["region"] }} backendService: $(ref.{{ env["name"] }}-port389-backend-service.selfLink) 

与以下运行时会发生错误

 Waiting for create operation-1478651694403-540d36cfdcdb9-cba25532-08697daf...failed. ERROR: (gcloud.beta.deployment-manager.deployments.create) Error in Operation operation-1478651694403-540d36cfdcdb9-cba25532-08697daf: errors: - code: RESOURCE_ERROR location: /deployments/forgerock/resources/forgerock-frontend-port389-backend-service-us-central1 message: 'Unexpected response from resource of type compute.beta.backendService: 400 {"code":400,"errors":[{"domain":"global","message":"Invalid value for field ''resource.loadBalancingScheme'': ''INTERNAL''. Load balancing scheme must be external for a global backend service.","reason":"invalid"}],"message":"Invalid value for field ''resource.loadBalancingScheme'': ''INTERNAL''. Load balancing scheme must be external for a global backend service.","statusMessage":"Bad Request","requestPath":"https://www.googleapis.com/compute/beta/projects/carbide-tenure-557/global/backendServices"}' 

这似乎是使用https://www.googleapis.com/compute/beta/projects/carbide-tenure-557/global/backendServices而不是https://www.googleapis.com/compute/beta/projects/carbide-tenure-557/backendServices

我知道这是testing版function,但试图用GDM来开发这个解决scheme,而不是混合使用gcloud命令和GDM