-
Notifications
You must be signed in to change notification settings - Fork 528
/
Copy pathvariables.tf
92 lines (77 loc) · 2.15 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
variable "aws_os" {
default = ""
description = "Optional aws EC2 instance OS"
type = string
}
variable "apm_instance_type" {
default = ""
type = string
description = "Optional apm server instance type override"
}
variable "apm_volume_type" {
default = null
type = string
description = "Optional apm server volume type override"
}
variable "apm_volume_size" {
default = null
type = number
description = "Optional apm server volume size in GB override"
}
variable "apm_iops" {
default = null
type = number
description = "Optional apm server disk IOPS override"
}
variable "vpc_id" {
description = "VPC ID to provision the EC2 instance"
type = string
}
variable "aws_provisioner_key_name" {
description = "ssh key name to create the aws key pair and remote provision the EC2 instance"
type = string
}
variable "elasticsearch_url" {
description = "The secure Elasticsearch URL"
type = string
}
variable "elasticsearch_username" {
sensitive = true
type = string
description = "The Elasticsearch username"
}
variable "elasticsearch_password" {
sensitive = true
type = string
description = "The Elasticsearch password"
}
variable "stack_version" {
default = "latest"
description = "Optional stack version"
type = string
}
variable "ea_managed" {
default = false
description = "Whether or not install Elastic Agent managed APM Server"
type = bool
}
variable "apm_server_bin_path" {
default = ""
type = string
description = "Optionally use the apm-server binary from the specified path instead"
}
variable "apm_server_tail_sampling" {
default = false
description = "Whether or not to enable APM Server tail-based sampling. Defaults to false"
type = bool
}
variable "apm_server_tail_sampling_storage_limit" {
default = "10GB"
description = "Storage size limit of APM Server tail-based sampling. Defaults to 10GB"
type = string
}
variable "tags" {
type = map(string)
default = {}
description = "Optional set of tags to use for all deployments"
}