mcqj
mcqj

Reputation: 53

How can I create a user in Google Cloud Platform without having to create a new Gmail user?

I want to create a user account for contacting developers using their own email addresses, not a new Gmail user in my account. Google Cloud Platform seems to let me create the users, but they never receive an email and hence can't complete the account creation.

As it happens, they are Google Docs users with their own Google accounts, but naturally they'd rather not have yet another email address. Is this even possible or does Google tie Google Cloud Platform into Google Docs? It seems a major limitation of Google Cloud Platform if they do.

Upvotes: 2

Views: 12839

Answers (2)

Martin Zeitler
Martin Zeitler

Reputation: 76849

the most simple is to share a directory with those off-domain email addresses

this is possible, because Google Docs is backed by Google Drive as storage.

setting them up with IAM would only add complexity, which is not required

(at least, unless you won't have to grant them access to GCP resources).

Upvotes: 0

DazWilkin
DazWilkin

Reputation: 40366

Google Cloud Platform, G Suite (formerly "Google Docs") and all other Google services share an identity system. The identity system requires humans to have user accounts while software|machines have service accounts. One Google user account equals one user.

There are 2 flavors of (Google) user accounts: [your-name]@gmail.com and those created by an organization for its users someone@acme.com. For example, Google uses Google identity internally and so Googlers have emails [their-name]@google.com.

When you create a Google Cloud Platform project, anyone with a Google account may be added to it. Whether their Google account is something@gmail.com or an account created by their employer for them.

The only time your users will receive an email from you when you add them to a Google Cloud Platform project is if you make them project owners. This is because, ownership requires acceptance of Google's Terms of Service. Other types of users will be added without receiving an email (from Google about it) but will be able to access your project's resources.

I suspect your users have been added correctly and you're ready to go!

Upvotes: 2

Related Questions