Hey folks… I am seeing something strange with Big...
# google-cloud
a
Hey folks… I am seeing something strange with Big Query Dataset IAM members. I have the code:
Copy code
const member = new DatasetIamMember(`${datasetId}-dataset-member`, {
        datasetId: datasetId, 
        project: project,
        member: `serviceAccount:${pubSubSaEmail}`,
        role: "roles/bigquery.dataEditor",
      })
This creates the member fine in pulumi (it’s in the resources), but it is not showing up in GCP in the dataset’s share role/principals. I manually added it (via the GCP console) and successfully imported it as another resource just to see if the code I had was off, but it is the same. Any Ideas?