-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
40 lines (34 loc) · 1.37 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
variable "prefix" {
type = string
description = "Naming prefix for resources created by this module. (Prefix separator included)"
default = "openid_config_crawler_"
}
variable "oidc_providers" {
type = list(string)
description = "List of OIDC (OpenID Connect) providers to be crawled (i.e. login.live.com)"
}
variable "dest_bucket_name" {
type = string
description = "Destination S3 bucket name for output files, if omitted random bucket with prefix will be created. (Underscores in prefix are replaced with minus due to naming rules)"
default = null
}
variable "dest_bucket_path" {
type = string
description = "Destination S3 bucket path for output files (Must end with / if used)"
default = ""
}
variable "schedule_expression" {
type = string
description = "Schedule expression of crawler. (See https://docs.aws.amazon.com/AmazonCloudWatch/latest/events/ScheduledEvents.html)"
default = "rate(1 hour)"
}
variable "fetch_jwks" {
type = bool
description = "This option controls whether the JWKS referenced in the openid configuration shall be fetched as well and stored in subfolder. (Creates preconfigured openid-jwks-crawler module if enabled)"
default = false
}
variable "timeout" {
type = number
description = "Timeout in seconds of of crawler/lambda functions."
default = 10
}