-
Notifications
You must be signed in to change notification settings - Fork 2
/
variables.tf
57 lines (48 loc) · 1.35 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
variable "name" {
type = string
description = "Name of the organization"
}
variable "email" {
type = string
description = "Admin email address"
}
variable "session_timeout_minutes" {
type = number
default = 20160
description = "Session timeout after inactivity"
}
variable "session_remember_minutes" {
type = number
default = 20160
description = "Session expiration"
}
variable "collaborator_auth_policy" {
type = string
default = "password"
description = "Authentication policy"
}
variable "owners_team_saml_role_id" {
type = string
default = null
description = "The name of the 'owners' team"
}
variable "cost_estimation_enabled" {
type = bool
default = false
description = "Whether or not the cost estimation feature is enabled for all workspaces in the organization"
}
variable "send_passing_statuses_for_untriggered_speculative_plans" {
type = bool
default = false
description = "Whether or not to send VCS status updates for untriggered speculative plans"
}
variable "members" {
type = list(string)
default = []
description = "Email of the users to add"
}
variable "force_regenerate" {
type = bool
default = false
description = "If set to true, a new token will be generated even if a token already exists"
}