-
Notifications
You must be signed in to change notification settings - Fork 101
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
Support HCL2 on nomad Go package #185
Conversation
This reverts commit 80afaad.
Thanks so much for the PR @thiagonache! It's good to see the tests passing now 🙂 Since the HCL2 jobspec parser is still not 100% compatible with the previous one, I think it would be better to have a config flag that could be set to indicate that the HCL2 parser should be used. Something like this: resource "nomad_job" "example" {
jobspec = "..."
hcl2 = true
} This config would default to Let me know of you have any questions. |
@lgfa29 Please, let me know if that's okay. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM 👍
Thank you for the contribution!
just curious, what's the release cadence of the provider? |
We don't have any specific cadence, it's usually driven by demand or if there is any critical bug fix. Are you waiting on this feature? There are a few other PRs that should be merged soon, so we will probably cut a release in the coming days. |
That’s good enough. I can use my own build for couple days.
🤩
… On 13 Jan 2021, at 21:15, Luiz Aoqui ***@***.***> wrote:
just curious, what's the release cadence of the provider?
We don't have any specific cadence, it's usually driven by demand or if there is any critical bug fix.
Are you waiting on this feature? There are a few other PRs that should be merged soon, so we will probably cut a release in the coming days.
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub, or unsubscribe.
|
FYI @thiagonache, Turns out that loading local files in HCL2 is a bit tricky, so we changed how the Since your PR has not been released yet, this change won't be listed as a breaking change in our CHANGELOG, but if you are using a custom build you will need to update your Terraform config files. |
thx for letting me know!!! |
Fix #179