We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8b81c5b commit 00087a1Copy full SHA for 00087a1
aws/backing-services/elasticsearch.tf
@@ -1,3 +1,9 @@
1
+variable "ELASTICSEARCH_NAME" {
2
+ type = "string"
3
+ default = "elasticsearch"
4
+ description = "Elasticsearch cluster name"
5
+}
6
+
7
variable "ELASTICSEARCH_VERSION" {
8
type = "string"
9
default = "6.2"
@@ -45,7 +51,7 @@ module "elasticsearch" {
45
51
source = "git::https://github.com/cloudposse/terraform-aws-elasticsearch.git?ref=tags/0.1.1"
46
52
namespace = "${var.namespace}"
47
53
stage = "${var.stage}"
48
- name = "elasticsearch"
54
+ name = "${var.ELASTICSEARCH_NAME}"
49
55
dns_zone_id = "${var.zone_id}"
50
56
security_groups = ["${module.kops_metadata.nodes_security_group_id}"]
57
vpc_id = "${module.vpc.vpc_id}"
0 commit comments