-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathvariables.tf
81 lines (68 loc) · 1.93 KB
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
variable "application_id" {
description = "ID of the serverless application to deploy; defaults to official SSOSync"
type = string
default = null
}
variable "google_admin_email" {
description = "Email address of the Google admin who created the service account"
type = string
}
variable "google_credentials" {
description = "Service account credentials for syncing users and groups"
sensitive = true
type = string
}
variable "google_group_match" {
description = "Pattern for finding which groups to sync (default all)"
type = string
default = ""
}
variable "google_ignore_groups" {
description = "Google groups to ignore (default none)"
type = string
default = ""
}
variable "google_ignore_users" {
description = "Google users to ignore (default none)"
type = string
default = ""
}
variable "google_user_match" {
description = "Pattern for finding which users to sync (defaults to all in matched groups)"
type = string
default = ""
}
variable "identity_store_id" {
description = "ID of the identity store to sync; defaults to the first store"
type = string
default = null
}
variable "name" {
description = "Name of the CloudFormation stack"
type = string
default = "aws-google-sso-sync"
}
variable "region" {
description = "AWS region in which to deploy the Lambda; defaults to current"
type = string
default = null
}
variable "scim_endpoint_access_token" {
description = "Access token for AWS SCIM provisioner"
type = string
sensitive = true
}
variable "scim_endpoint_url" {
description = "URL for AWS SCIM provisioner"
type = string
sensitive = true
}
variable "semantic_version" {
description = "Version of SSOSync to deploy"
type = string
}
variable "tags" {
description = "Tags to apply to created resources"
type = map(string)
default = {}
}