This repository has been archived by the owner on Jun 27, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 77
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Implement import functionality for group_members (#10)
* Implement import functionality for group_members * Use retries * Rename to group_email and use that as the id There is some confusion when using the Google group id. Using the email is the easiest option. I renamed the field so it is obvious.
- Loading branch information
1 parent
2e482b8
commit 4616e40
Showing
2 changed files
with
53 additions
and
27 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 |
---|---|---|
|
@@ -5,7 +5,7 @@ resource "gsuite_group" "testing_team" { | |
} | ||
|
||
resource "gsuite_group_members" "testing_team_members" { | ||
group = "${gsuite_group.testing_team.id}" | ||
group_email = "${gsuite_group.testing_team.email}" | ||
|
||
member { | ||
email = "[email protected]", | ||
|
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