-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
45 lines (37 loc) · 993 Bytes
/
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
variable "name" {
type = string
description = "The name of the OAuth integration."
}
variable "oauth_client" {
type = string
description = "The OAuth client."
}
variable "enabled" {
type = bool
description = "Flag to enable or disable the resource."
default = true
}
variable "oauth_issue_refresh_tokens" {
type = bool
description = "Flag to determine if refresh tokens should be issued."
default = true
}
variable "oauth_refresh_token_validity" {
type = number
description = "The validity period of the OAuth refresh token."
default = 3600
}
variable "blocked_roles_list" {
type = list(string)
description = "List of blocked roles."
default = ["SYSADMIN"]
}
variable "oauth_redirect_uri" {
type = string
default = "https://example.com/callback"
}
variable "comment" {
type = string
description = "The value of the comment field for the OAuth integration."
}
# Path: outputs.tf