-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Change: update configuration examples INPRO-1087
- Loading branch information
Showing
12 changed files
with
118 additions
and
78 deletions.
There are no files selected for viewing
2 changes: 0 additions & 2 deletions
2
examples/example-gsuite-authentication/terraform.tfvars.example
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
18 changes: 14 additions & 4 deletions
18
...les/example-gsuite-authentication/main.tf → ...s/example-provider-authentication/main.tf
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
7 changes: 7 additions & 0 deletions
7
examples/example-provider-authentication/terraform.tfvars.example
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# ------------------------------------------------------------------------------------------- | ||
# Gworkspace credentials | ||
# ------------------------------------------------------------------------------------------- | ||
|
||
#gworkspace_customer_id = "AB007cdef" | ||
#gworkspace_email = "[email protected]" | ||
#gworkspace_credentials = "/path/to/google_credentials.json" |
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 |
---|---|---|
@@ -0,0 +1,38 @@ | ||
# ------------------------------------------------------------------------------------------- | ||
# CONFIGURE VARIABLES | ||
# ------------------------------------------------------------------------------------------- | ||
|
||
# ------------------------------------------------------------------------------------------- | ||
# EXAMPLE | ||
# | ||
# Just an example. | ||
# Will be set to example if not set. | ||
# ------------------------------------------------------------------------------------------- | ||
|
||
# variable "example" { | ||
# description = "Just an example." | ||
# type = string | ||
# default = "example" | ||
# sensitive = true | ||
# } | ||
|
||
variable "gworkspace_customer_id" { | ||
type = string | ||
default = null | ||
description = "customer id of google workspace" | ||
sensitive = true | ||
} | ||
|
||
variable "gworkspace_email" { | ||
type = string | ||
default = null | ||
description = "impersonated user account for GSuite domain-wide delegation" | ||
sensitive = true | ||
} | ||
|
||
variable "gworkspace_credentials" { | ||
type = string | ||
default = null | ||
description = "link to google credentials for service account" | ||
sensitive = true | ||
} |
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
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
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
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 |
---|---|---|
|
@@ -3,21 +3,21 @@ | |
# --------------------------------------------------------------------------------------------------------------------- | ||
|
||
one-group: | ||
email: '[email protected]' | ||
name: 'Example group' | ||
settings: 'anyone-mail-allowed' | ||
email: "[email protected]" | ||
name: "Example group" | ||
settings: "anyone-mail-allowed" | ||
aliases: | ||
- '[email protected]' | ||
- "[email protected]" | ||
groups: [] | ||
|
||
# --------------------------------------------------------------------------------------------------------------------- | ||
# GOOGLE GROUP WITH ANOTHER GROUP AS MEMBER | ||
# --------------------------------------------------------------------------------------------------------------------- | ||
|
||
another-group: | ||
email: '[email protected]' | ||
name: 'Another Example group' | ||
settings: 'default' | ||
email: "[email protected]" | ||
name: "Another Example group" | ||
settings: "default" | ||
aliases: [] | ||
groups: | ||
- 'one-group' | ||
- "one-group" |
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 |
---|---|---|
|
@@ -3,15 +3,15 @@ | |
# --------------------------------------------------------------------------------------------------------------------- | ||
|
||
jane: | ||
primary_email: '[email protected]' | ||
include_in_global_list: true | ||
given_name: 'Jane' | ||
family_name: 'Doe' | ||
is_suspended: false | ||
suspension_reason: '' | ||
org_unit_path: '/' | ||
primary_email: "[email protected]" | ||
family_name: "Doe" | ||
given_name: "Jane" | ||
aliases: | ||
- '[email protected]' | ||
role: | ||
- 'one-group' | ||
- 'another-group' | ||
- "[email protected]" | ||
include_in_global_address_list: true | ||
org_unit_path: "/" | ||
archived: false | ||
suspended: false | ||
roles: | ||
- "one-group" | ||
- "another-group" |
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 |
---|---|---|
|
@@ -4,4 +4,4 @@ | |
|
||
[email protected]: | ||
roles: | ||
- 'one-group' | ||
- "one-group" |