-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28 from egarbi/adds_support_for_0.14
Adds support for 0.14
- Loading branch information
Showing
3 changed files
with
25 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,34 @@ | ||
output "es_arn" { | ||
description = "Amazon Resource Name (ARN) of the domain" | ||
value = "${aws_elasticsearch_domain.es.arn}" | ||
value = aws_elasticsearch_domain.es.arn | ||
} | ||
|
||
output "es_availability_zones_ids" { | ||
description = "If the domain was created inside a VPC, the names of the availability zones the configured subnet_ids were created inside." | ||
value = "${aws_elasticsearch_domain.es.vpc_options.0.availability_zones}" | ||
value = aws_elasticsearch_domain.es.vpc_options.0.availability_zones | ||
} | ||
|
||
output "es_domain_id" { | ||
description = "Unique identifier for the domain." | ||
value = "${aws_elasticsearch_domain.es.domain_id}" | ||
value = aws_elasticsearch_domain.es.domain_id | ||
} | ||
|
||
output "es_endpoint" { | ||
description = "Domain-specific endpoint used to submit index, search, and data upload requests." | ||
value = "${aws_elasticsearch_domain.es.endpoint}" | ||
value = aws_elasticsearch_domain.es.endpoint | ||
} | ||
|
||
output "es_kibana_endpoint" { | ||
description = "Domain-specific endpoint for kibana without https scheme." | ||
value = "${aws_elasticsearch_domain.es.kibana_endpoint}" | ||
value = aws_elasticsearch_domain.es.kibana_endpoint | ||
} | ||
|
||
output "es_sg" { | ||
description = "The SG id created to allow communication with ElasticSearch cluster." | ||
value = "${aws_security_group.elasticsearch.id}" | ||
value = aws_security_group.elasticsearch.id | ||
} | ||
|
||
output "es_vpc_ids" { | ||
description = "The VPC ID if the domain was created inside a VPC." | ||
value = "${aws_elasticsearch_domain.es.vpc_options.0.vpc_id}" | ||
value = aws_elasticsearch_domain.es.vpc_options.0.vpc_id | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters