forked from 1Password/scim-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvariables.tf
48 lines (40 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
variable "aws_region" {
type = string
description = "The region of the AWS account where the 1Password SCIM Bridge will be deployed."
}
variable "domain_name" {
type = string
description = "The public DNS address pointing to your SCIM bridge."
}
variable "tags" {
type = map(string)
description = "A set of tags to apply to all respective AWS resources."
}
variable "name_prefix" {
type = string
description = "A common prefix to apply to the names of all AWS resources."
}
variable "vpc_name" {
type = string
description = "The name of an existing VPC to use."
}
variable "wildcard_cert" {
type = bool
default = false
description = "Set to true to use an existing wildcard certificate in ACM for the load balancer."
}
variable "using_route53" {
type = bool
default = true
description = "Set to false to use an external DNS provider"
}
variable "log_retention_days" {
type = number
description = "Specifies the number of days to retain log events in CloudWatch. The log is retained indefinitely when set to 0."
}
# For customers integrating with Google Workspace
variable "google_workspace_actor" {
type = string
default = null
description = "The email address of the administrator in Google Workspace that the service account is acting on behalf of."
}