-
Notifications
You must be signed in to change notification settings - Fork 1
/
variables.tf
57 lines (48 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
49
50
51
52
53
54
55
56
57
variable "region" {
type = string
default = "eu-central-1"
description = "AWS region"
}
variable "aws_profile" {
type = string
default = "default"
description = "AWS Profile that contains credentials to connect to AWS"
}
# Elasticsearch domain
variable "es_domain_arn" {
type = string
description = "The Elasticsearch domain ARN"
}
variable "es_domain_endpoint" {
type = string
description = "The Elasticsearch domain endpoint"
}
variable "es_security_group_id" {
type = string
description = "The Elasticsearch cluster security group IDs"
}
variable "es_subnet_ids" {
type = list(string)
description = "IDs of the private subnets where the Elasticsearch cluster is deployed"
}
# Snapshot repository
variable "s3_repository_bucket" {
type = string
default = ""
description = "The name of the s3 bucket that hosts the Elasticsearch snapshot repository"
}
variable "es_snapshot_repository" {
type = string
default = "bootstrap-repo"
description = "The name of the snapshot repository with the data to bootstrap"
}
variable "es_snapshot_name" {
type = string
description = "The name of the snapshot to restore"
}
# others
variable "tags" {
type = map(string)
default = {}
description = "Additional tags (e.g. map('BusinessUnit','XYZ')"
}