This message was deleted.
# google-cloud
s
This message was deleted.
n
Was able to figure it out using project binding, in case anyone else needs it (python):
Copy code
firestore_iam = gcp.projects.IAMBinding(
    resource_name="firestore-binding",
    project=project,
    role="roles/datastore.owner",
    members=[gcp_sa.email.apply(lambda email: f"serviceAccount:{email}")],
    opts=pulumi.ResourceOptions(provider=gcp_provider),
)