-
Notifications
You must be signed in to change notification settings - Fork 262
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
Add support for a few more Elasticsearch integration options #169
Conversation
Looks good! There's a one-space off in the |
Hi @miketheman , does this new commit fix what you're talking about? |
@chrissnell no, I was referring to the 3-spaces on the if/end - it should be 2 - lines 15 & 17 |
Ahh, I see now. Better? |
OK, I added a space to make it a three-space to match the rest of the spacing in the template. If you want two-space everywhere, LMK and I will change everything to match. |
I think mentioned that it should be 2 in my prior comment: #169 (comment) This is how I would expect to see the tags block indented: <% if i.key?('tags') -%>
tags:
<% i['tags'].each do |t| -%>
- <%= t %>
<% end -%>
<% end -%> 3-spacing is a very odd one - that why I pointed it out. 2-spacing is pretty standard Ruby and YAML. Would you mind rebasing and squashing these commits down to a single one? |
Adds support for is_external, username, password, and tags.
\o/ |
Nice! I'll merge this soon with the next round of enhancements. |
Adds support for is_external, username, password, and tags.