-
Notifications
You must be signed in to change notification settings - Fork 0
/
vars.tf
50 lines (41 loc) · 1.09 KB
/
vars.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
variable "name" {
type = string
default = "ToolsConsole"
description = "Name of the solution"
}
variable "initial_admin_email_address" {
type = string
description = "Default email address for initial login to Cognito. Initial login details will be sent here"
}
variable "aws_cli_profile_name" {
type = string
description = "AWS CLI profile to use for credentials if not using the default"
}
variable "vault_api_url" {
type = string
description = "URL to the vault API"
}
variable "recaptcha_v2_site_key" {
type = string
description = "Recaptcha v2 site key"
}
variable "oidc_discovery_url" {
type = string
description = "URL for the OIDC discovery metadata"
}
variable "oidc_client_secret" {
type = string
description = "Client secret for the OIDC JWT lambda"
}
variable "oidc_base_url" {
type = string
description = "OIDC base URL"
}
variable "oidc_client_id" {
type = string
description = "OIDC base URL"
}
variable "oidc_resource_id" {
type = string
description = "OIDC resource id"
}