-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
52 lines (44 loc) · 1.24 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
49
50
51
52
variable "cloudsearch_domain_name" {
type = string
description = "The name of the CloudSearch domain"
}
variable "multi_az_enabled" {
type = bool
description = "Whether or not to maintain extra instances for the domain in a second Availability Zone to ensure high availability"
default = false
}
variable "create" {
type = bool
description = "Whether or not to create a cloudsearch domain"
default = true
}
variable "create_access_policy" {
type = bool
description = "Whether or not to create a cloudsearch domain service access policy"
default = true
}
variable "endpoint_options" {
type = map(any)
description = "Domain endpoint options"
default = {}
}
variable "index_field" {
type = list(any)
description = "The index fields for documents added to the domain"
default = []
}
variable "scaling_parameters" {
type = map(any)
description = "Domain scaling parameters"
default = {}
}
variable "access_policy" {
type = string
description = "The access rules you want to configure. These rules replace any existing rules"
default = ""
}
variable "access_policy_statement" {
type = any
description = ""
default = []
}