-
Notifications
You must be signed in to change notification settings - Fork 3
/
variables.tf
75 lines (62 loc) · 1.71 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
variable "auth0_tenant_domain" {
description = "Auth0 tenant domain"
type = string
}
variable "auth0_client_id" {
description = "Auth0 client ID (from a Machine to Machine application)"
type = string
sensitive = true
}
variable "auth0_client_secret" {
description = "Auth0 client secret (from a Machine to Machine application)"
type = string
sensitive = true
}
variable "auth0_debug" {
description = "Auth0 debug flag"
type = bool
default = false
}
variable "auth0_github_client_id" {
description = "Auth0: GitHub client ID"
type = string
sensitive = true
}
variable "auth0_github_client_secret" {
description = "Auth0: GitHub client secret"
type = string
sensitive = true
}
variable "auth0_github_allowed_orgs" {
description = "A list of GitHub organisations a user has to be part of"
type = list(string)
}
variable "auth0_allowed_domains" {
description = "A list of authorised domains a user must have as part of their GitHub email addresses"
type = string
}
variable "auth0_aws_sso_acs_url" {
description = "AWS SSO: ACS URL"
type = string
sensitive = true
}
variable "auth0_aws_sso_issuer_url" {
description = "AWS SSO: Issuer URL"
type = string
sensitive = true
}
variable "auth0_azure_entraid_client_id" {
description = "Client id for the azures application"
type = string
sensitive = true
}
variable "auth0_azure_entraid_client_secret" {
description = "Client secret for the azures application"
type = string
sensitive = true
}
variable "auth0_azure_entraid_domain" {
description = "Azures application domain name"
type = string
sensitive = true
}