Hi! I started using Pulumi for our GCP deployment...
# google-cloud
p
Hi! I started using Pulumi for our GCP deployments. I have managed to setup Cloud Run, Cloud SQL and some more stuff but I have some questions I couldn't solve on my own or with the help of Google: • How to do the equivalent of this in pulumi (This is executed in the gcp cloud console):
Copy code
docker pull hasura/graphql-engine
docker tag <http://docker.io/hasura/graphql-engine:latest|docker.io/hasura/graphql-engine:latest> <http://gcr.io/gcp-project/hasura|gcr.io/gcp-project/hasura>
docker push <http://gcr.io/gcp-project/hasura|gcr.io/gcp-project/hasura>
• How to insert basic data in a Postgres (Cloud SQL) database that was setup via pulumi.
Copy code
CREATE OR REPLACE function...
Really appreciate your help!