-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
72 lines (61 loc) · 1.65 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
#Trust Provider Settings
variable "trust_provider_type" {
description = "The type of trust provider can be either user or device-based."
type = string
}
variable "policy_reference_name" {
description = "The type of trust provider can be either user or device-based."
type = string
}
variable "user_trust_provider_type" {
description = "The type of user-based trust provider."
type = string
default = "iam-identity-center"
}
#OIDC Settings
variable "authorization_endpoint" {
description = "The OIDC authorization endpoint."
type = string
default = null
}
variable "client_id" {
description = "The client identifier."
type = string
default = null
}
variable "client_secret" {
description = "The client secret."
type = string
default = null
}
variable "issuer" {
description = "The OIDC issuer."
type = string
default = null
}
variable "scope" {
description = "OpenID Connect (OIDC) scopes are used by an application during authentication to authorize access to details of a user."
type = string
default = null
}
variable "token_endpoint" {
description = "The OIDC token endpoint."
type = string
default = null
}
variable "user_info_endpoint" {
description = "The OIDC user info endpoint."
type = string
default = null
}
#Access Group Settings
variable "group_policy_document" {
description = "he policy document that is associated with this resource."
type = string
default = null
}
variable "tags" {
description = "Key-value mapping of resource tags."
type = map(string)
default = {}
}