This repository was archived by the owner on Jun 16, 2023. It is now read-only.
forked from 1Password/scim-examples
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathvariables.tf
More file actions
48 lines (40 loc) · 1.32 KB
/
variables.tf
File metadata and controls
48 lines (40 loc) · 1.32 KB
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 whne set to 0."
}
# (For customers using Google Workspace participants)
variable "using_google_workspace" {
type = bool
default = false
description = "Set to true to add Google Workspace configuration to 1Password SCIM bridge"
}