Skip to content
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

Update display_name for Solr on ECS + fix outputs #38

Merged
merged 2 commits into from
Jun 6, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions solr-on-ecs.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
version: 1
name: solr-on-ecs
id: 182612a5-e2b7-4afc-b2b2-9f9d066875d1
description: Fault-tolerant and highly-available distributed indexing and searching using Apache Solr
display_name: SolrCloud
description: Independent indexing and searching using Apache Solr
display_name: Solr on ECS
image_url: https://lucene.apache.org/theme/images/solr/identity/Solr_Logo_on_white.png
documentation_url: https://lucene.apache.org/solr/resources.html
support_url: https://github.com/GSA/datagov-brokerpak-solr
Expand Down
2 changes: 1 addition & 1 deletion terraform/standalone_ecs/bind/outputs.tf
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@

output "uri" { value = var.solr_admin_url }
output "domain" { value = var.solr_admin_url }
output "domain" { value = replace(var.solr_admin_url, "https://", "") }
output "username" { value = random_uuid.username.result }
output "password" { value = nonsensitive(random_password.password.result) }

Expand Down