generated from cloudposse-terraform-components/template
-
-
Notifications
You must be signed in to change notification settings - Fork 0
feat: add SAML options and service type for OpenSearch #64
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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,49 +1,54 @@ | ||
| output "security_group_id" { | ||
| value = module.elasticsearch.security_group_id | ||
| value = local.enabled ? module.elasticsearch.security_group_id : null | ||
| description = "Security Group ID to control access to the Elasticsearch domain" | ||
| } | ||
|
|
||
| output "domain_arn" { | ||
| value = module.elasticsearch.domain_arn | ||
| value = local.enabled ? module.elasticsearch.domain_arn : null | ||
| description = "ARN of the Elasticsearch domain" | ||
| } | ||
|
|
||
| output "domain_id" { | ||
| value = module.elasticsearch.domain_id | ||
| value = local.enabled ? module.elasticsearch.domain_id : null | ||
| description = "Unique identifier for the Elasticsearch domain" | ||
| } | ||
|
|
||
| output "domain_name" { | ||
| value = local.enabled ? module.elasticsearch.domain_name : null | ||
| description = "Name of the Elasticsearch domain" | ||
| } | ||
|
|
||
| output "domain_endpoint" { | ||
| value = module.elasticsearch.domain_endpoint | ||
| value = local.enabled ? module.elasticsearch.domain_endpoint : null | ||
| description = "Domain-specific endpoint used to submit index, search, and data upload requests" | ||
| } | ||
|
|
||
| output "kibana_endpoint" { | ||
| value = module.elasticsearch.kibana_endpoint | ||
| value = local.enabled ? module.elasticsearch.kibana_endpoint : null | ||
| description = "Domain-specific endpoint for Kibana without https scheme" | ||
| } | ||
|
|
||
| output "domain_hostname" { | ||
| value = module.elasticsearch.domain_hostname | ||
| value = local.enabled ? module.elasticsearch.domain_hostname : null | ||
| description = "Elasticsearch domain hostname to submit index, search, and data upload requests" | ||
| } | ||
|
|
||
| output "kibana_hostname" { | ||
| value = module.elasticsearch.kibana_hostname | ||
| value = local.enabled ? module.elasticsearch.kibana_hostname : null | ||
| description = "Kibana hostname" | ||
| } | ||
|
|
||
| output "elasticsearch_user_iam_role_name" { | ||
| value = module.elasticsearch.elasticsearch_user_iam_role_name | ||
| value = local.enabled ? module.elasticsearch.elasticsearch_user_iam_role_name : null | ||
| description = "The name of the IAM role to allow access to Elasticsearch cluster" | ||
| } | ||
|
|
||
| output "elasticsearch_user_iam_role_arn" { | ||
| value = module.elasticsearch.elasticsearch_user_iam_role_arn | ||
| value = local.enabled ? module.elasticsearch.elasticsearch_user_iam_role_arn : null | ||
| description = "The ARN of the IAM role to allow access to Elasticsearch cluster" | ||
| } | ||
|
|
||
| output "master_password_ssm_key" { | ||
| value = local.elasticsearch_admin_password | ||
| value = local.enabled ? local.elasticsearch_admin_password : null | ||
| description = "SSM key of Elasticsearch master password" | ||
| } |
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.