Skip to content

Releases: laurmurclar/datadog-to-terraform

Support for provider v2.24.0

22 Mar 17:49
01f32fd
Compare
Choose a tag to compare

Adds support for the Datadog Terraform provider v2.24.0

  • datadog_dashboard: Add legend_layout and legend_columns to timeseries widget definition

Thanks @flavio-cadete-cko for bringing attention to this!

Omit deprecated key 'logset'

19 Mar 09:26
929523c
Compare
Choose a tag to compare

@flavio-cadete-cko has fixed #53.

Thanks for finding the issue and then fixing it! Really appreciate it

Omit deprecated keys and add conversion for 'groupby_simple_monitor'

17 Mar 11:14
6cb72d8
Compare
Choose a tag to compare

Fixes conversion for log queries

16 Mar 17:48
5f2be19
Compare
Choose a tag to compare

Previously, log_query blocks were not converted at all. Now they are :)

Thanks to @flavio-cadete-cko for raising the issue in #49

Fixes conversion for hostmaps

14 Mar 13:24
b22edd8
Compare
Choose a tag to compare

Previously, if you had a hostmap in your screenboard, the conversion would throw an error. That's no longer the case 🎉

Thanks to @brianpham for raising the issue in #43

Fix conversion for 'on_right_yaxis'

16 Feb 14:11
fdcc8db
Compare
Choose a tag to compare

Improved support for provider v2.21.0

16 Feb 12:22
a0c1563
Compare
Choose a tag to compare

Internally, the converter has been entirely re-written for improved support of Terraform's latest Datadog provider. This also means it'll be easier for others to contribute, so feel free to get involved!

Fixes #34, #35

Fix 'metadata' conversion

14 Dec 11:38
Compare
Choose a tag to compare

As mentioned in #33, the metadata key wasn't being converted correctly. Thanks for fixing this @ghostec!

Before

metadata: [[Object object]]

After

metadata {
  expression = "some_expression"
  alias_name = "some_alias"
}

Support for Terraform 0.12

10 Nov 17:52
Compare
Choose a tag to compare

Terraform 0.12 has some new syntax for mappings which are now supported, thanks to @discosultan 🎉

They also removed the now deprecated silenced option for monitors.

Support for template variable presets

28 Sep 11:21
Compare
Choose a tag to compare

Template variable presents now convert correctly 🎉

Fixes #30