https://pulumi.com logo
#general
Title
# general
c

crooked-pharmacist-80040

10/12/2023, 2:29 PM
Is the service created by gcp.compute.BackendService by default global? From the docs - https://www.pulumi.com/registry/packages/gcp/api-docs/compute/backendservice/ - it mentions "global backend service" and by default, it is "EXTERNAL". I am initializing it by:
Copy code
backend_service = compute.BackendService(
    backend_name,
    project=gcp_project,
    backends=backends,
    enable_cdn=True,
    port_name="http",
    protocol="HTTP"
)
Does that mean, it will correspond to the following command:
Copy code
gcloud compute backend-services create --global $BACKEND_NAME
Stackoverflow question: https://stackoverflow.com/questions/77281519/is-the-backend-service-created-in-google-cloud-compute-via-pulumi-global