-
Notifications
You must be signed in to change notification settings - Fork 389
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 custum_bg_color to screenboard #189
Add custum_bg_color to screenboard #189
Conversation
Thanks for the PR! |
@bkabrda Thanks for the information, will have a look at it and update my PR accordingly :) |
@bkabrda There you go zorkian/go-datadog-api#242 |
@milanvdm feel free to just run:
And add another commit with the resulting diff to update the dep - that's what we do most of the time and it works fine. Alternatively, you could open a standalone PR to update the deps, but I think adding it in a different commit of this PR is ok. |
@bkabrda Thanks for giving me the go commands ;) |
@milanvdm no problem! Now as I suggested in one of my previous comments, you'll need to adjust |
Looks real good now, but you'll need to apply this diff to make the tests pass:
Once you do that, I'll merge this PR. |
Also, please consider squashing all the commits except the one that updates the deps, it would help improve the commit history of the repo when I merge. |
@bkabrda I'm afraid you lost me with applying this diff. This does not make sense to me in my Scala world. |
@milanvdm sorry for the confusion. Basically there's one more line left over to fix in the |
5bb3416
to
832056a
Compare
832056a
to
8f03724
Compare
@bkabrda Fixed the tests and squashed my commits. |
Perfect work, I'm merging this PR now. Thank you so much for all your work on this! |
@bkabrda Thanks a lot for helping me out with Go! |
The release process (in terms of when a new release happens) doesn't have any strict rules. Before version 1.8.0, the releases weren't too often but now we're managing to do more changes than we used to, so it's likely that it will happen in a week or two (but I can't guarantee that 100 %). |
@bkabrda Is there any way so I can use a certain commit of a provider or an RC release? |
@milanvdm personally, I use a very specific way that I would never recommend for actual production use - I compile the provider myself ( I guess you could follow https://www.terraform.io/docs/commands/init.html#plugin-installation - add the compiled provider to A word of warning - while we do try as much as we can to make sure every merged PR doesn't break anything, we sometimes hit minor bugs when we do pre-release testing. So please make sure you double check everything that's happening with your TF plan. Hope this helps! |
…enboard Add custum_bg_color to screenboard
In the documentation it is mentioned that
custom_bg
is supported for a screenboard (https://www.terraform.io/docs/providers/datadog/r/screenboard.html#palette-2).But no
custom_bg_color
field is available such as https://www.terraform.io/docs/providers/datadog/r/timeboard.html#custom_bg_color.I added the field to the screenboard code.