We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
the only directive consul accepts looks like
"retry_join": ["test-cluster-vm.example.org"],
With this module I cannot get that string in config file, because it is generating something else all the time, for example
"retry_join": "[\"test-cluster-vm.caravan.dmz\"]",
when in puppet manifest I specify
'retry_join' => '["test-cluster-vm.example.org"]'
The text was updated successfully, but these errors were encountered:
This should be an array in JSON, so:
$config = { 'retry_join' => [ 'test' ], }
Should make the resulting config end up in the way that consul wants.
However, I recently changed the way the JSON is deployed for #45, it may be just wrong.
If that is the case, then it sounds like I need a test case to cover this?
Can you give me more context, like a pastebin of the full puppet code and a pastebin of the output consul config?
Sorry, something went wrong.
Yep, it's working now. I specify it exactly as your example. Thanks!
No branches or pull requests
the only directive consul accepts looks like
With this module I cannot get that string in config file, because it is generating something else all the time, for example
when in puppet manifest I specify
The text was updated successfully, but these errors were encountered: