-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathvariables.tf
34 lines (28 loc) · 943 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
variable "name" {
type = string
description = "Name for the various cognito resources"
}
variable "dns_name" {
type = string
description = "DNS name for the authenticate page (e.g. `auth.my-company.com`)"
}
variable "zone_id" {
type = string
description = "Route53 zone id to put DNS records in"
}
variable "saml_metadata_file_content" {
type = string
description = "Contents of the SAML metadata file"
}
variable "saml_metadata_sso_redirect_binding_uri" {
type = string
description = "The HTTP-Redirect SSO binding from the SAML metadata file. Must be kept in sync with saml_metadata_file_content!"
}
variable "relying_party_dns_names" {
type = list(string)
description = "List of DNS names for the relying parties (i.e. the applications you are authenticating with this)"
}
variable "environment" {
type = string
description = "Environment tag. e.g. prod"
}