-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Option to create Elasticsearch delivery
- Loading branch information
Jarl
committed
Jan 26, 2021
1 parent
2a479bb
commit 190dcc1
Showing
8 changed files
with
116 additions
and
71 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
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,19 +1,19 @@ | ||
output "arn" { | ||
description = "ES ARN" | ||
value = aws_elasticsearch_domain.cxcloud.arn | ||
description = "Amazon Resource Name (ARN) of the domain" | ||
value = var.create_es ? aws_elasticsearch_domain.cxcloud[0].arn : "" | ||
} | ||
|
||
output "endpoint" { | ||
description = "ES Endpoint" | ||
value = aws_elasticsearch_domain.cxcloud.endpoint | ||
description = "Domain-specific endpoint used to submit index, search, and data upload requests" | ||
value = var.create_es ? aws_elasticsearch_domain.cxcloud[0].endpoint : "" | ||
} | ||
|
||
output "domain_id" { | ||
description = "ES ARN" | ||
value = aws_elasticsearch_domain.cxcloud.domain_id | ||
description = "Unique identifier for the domain" | ||
value = var.create_es ? aws_elasticsearch_domain.cxcloud[0].domain_id : "" | ||
} | ||
|
||
output "domain_name" { | ||
description = "ES ARN" | ||
value = aws_elasticsearch_domain.cxcloud.domain_name | ||
description = "The name of the Elasticsearch domain" | ||
value = var.create_es ? aws_elasticsearch_domain.cxcloud[0].domain_name : "" | ||
} |
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
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