Hi , i am trying to run gcp cloud-run via pulumi ,...
# general
s
Hi , i am trying to run gcp cloud-run via pulumi , but i am unable to figure out where i can pass provider (
google-beta
) in calling for creating cloud run
Copy code
my_endpoint = cloudrun.Service("my_api_endpoint",
                                    spec={
                                        "containers": [
                                            {"image":"<http://gcr.io/endpoints-release/endpoints-runtime-serverless:1|gcr.io/endpoints-release/endpoints-runtime-serverless:1>"}
                                        ]
                                    },
                                    location="us-east1", metadata={"namespace": "myproject"},)
, i keep getting 400 error for this , still dont the reason but speculating this could be a starting point
or can someone help with function i am calling, there seems almost none documentation around it, happy to contribute if required