Skip to content

Commit

Permalink
Merge pull request #7 from pogosoftware/feature/fix-outputs
Browse files Browse the repository at this point in the history
fixed outputs
  • Loading branch information
scrhicks authored May 19, 2022
2 parents 168c8f1 + e3f000d commit 78bbe56
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,25 +11,25 @@ output "iam_service_linked_roles" {
##########################################################################
output "elasticsearch_domain_arn" {
description = "ARN of the domain"
value = try(module.elasticsearch_domain[0].this.arn, "")
value = try(module.elasticsearch_domain[0].arn, "")
}

output "elasticsearch_domain_id" {
description = "Unique identifier for the domain"
value = try(module.elasticsearch_domain[0].this.domain_id, "")
value = try(module.elasticsearch_domain[0].domain_id, "")
}

output "elasticsearch_domain_name" {
description = "Name of the Elasticsearch domain"
value = try(module.elasticsearch_domain[0].this.domain_name, "")
value = try(module.elasticsearch_domain[0].domain_name, "")
}

output "elasticsearch_domain_endpoint" {
description = "Domain-specific endpoint used to submit index, search, and data upload requests"
value = try(module.elasticsearch_domain[0].this.endpoint, "")
value = try(module.elasticsearch_domain[0].endpoint, "")
}

output "elasticsearch_domain_kibana_endpoint" {
description = "Domain-specific endpoint for kibana without https scheme"
value = try(module.elasticsearch_domain[0].this._kibana_endpoint, "")
value = try(module.elasticsearch_domain[0].kibana_endpoint, "")
}

0 comments on commit 78bbe56

Please sign in to comment.