forked from GoogleCloudPlatform/magic-modules
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add instructions on Cloud Identity values (GoogleCloudPlatform#4577)
- Loading branch information
1 parent
88e1641
commit 9975c35
Showing
1 changed file
with
6 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -64,10 +64,16 @@ var orgEnvVars = []string{ | |
"GOOGLE_ORG", | ||
} | ||
|
||
// This value is the Customer ID of the GOOGLE_ORG_DOMAIN workspace. | ||
// See https://admin.google.com/ac/accountsettings when logged into an org admin for the value. | ||
var custIdEnvVars = []string{ | ||
"GOOGLE_CUST_ID", | ||
} | ||
|
||
|
||
// This value is the username of an identity account within the GOOGLE_ORG_DOMAIN workspace. | ||
// For example in the org example.com with a user "[email protected]", this would be set to "foo". | ||
// See https://admin.google.com/ac/users when logged into an org admin for a list. | ||
var identityUserEnvVars = []string{ | ||
"GOOGLE_IDENTITY_USER", | ||
} | ||
|