Complete the code to specify a user member in a GCP IAM policy binding.
member = "user:[1]"
The prefix user: is used to specify an individual user email in IAM policies.
Complete the code to specify a service account member in a GCP IAM policy binding.
member = "[1]:my-service-account@project.iam.gserviceaccount.com"
The prefix serviceAccount: is used to specify a service account in IAM policies.
Fix the error in the member string to correctly specify a group in a GCP IAM policy.
member = "[1]:dev-team@example.com"
The prefix group: is required to specify a Google Group as a member in IAM policies.
Fill both blanks to create a member string for a domain in GCP IAM policy.
member = "[1]:[2]"
The prefix domain: is used to specify all users in a domain, followed by the domain name.
Fill all three blanks to define a service account member with a specific project in GCP IAM policy.
member = "[1]:[2]@[3].iam.gserviceaccount.com"
The member string for a service account includes the prefix serviceAccount:, the service account name, and the project ID.