Releases: gdashboard/terraform-provider-gdashboard
Releases · gdashboard/terraform-provider-gdashboard
v0.0.20
There is a breaking change in the definition of the prometheus
query:
queries {
prometheus {
- min_interval = "30s"
+ min_step = "30s"
}
}
What's Changed
- Allow hiding queries by @iRevive in #118
- CloudWatch metrics: allow configuring min interval by @iRevive in #116
- Support
expression
query by @iRevive in #117 - Rename
prometheus#min_interval
->prometheus#min_step
. Addquery#min_interval
by @iRevive in #119
Full Changelog: v0.0.19...v0.0.20
v0.0.19
This release has breaking changes in the CloudWatch query definition. The type of the query must be specified, it's either metrics
or logs
.
Before:
cloudwatch {
uid = "cloudwatch"
namespace = "AWS/ApplicationELB"
metric_name = "HTTPCode_Target_2XX_Count"
statistic = "Sum"
match_exact = true
}
After:
cloudwatch {
metrics {
uid = "cloudwatch"
namespace = "AWS/ApplicationELB"
metric_name = "HTTPCode_Target_2XX_Count"
statistic = "Sum"
match_exact = true
}
}
What's Changed
Full Changelog: v0.0.18...v0.0.19
v0.0.18
What's Changed
Full Changelog: v0.0.17...v0.0.18
v0.0.17
v0.0.16
Merge pull request #100 from gdashboard/compact-mode Implement compact mode
v0.0.15
New features
Dependencies
- Bump github.com/hashicorp/terraform-plugin-framework from 1.2.0 to 1.3.1 by @dependabot in #70
- Bump github.com/hashicorp/terraform-plugin-go from 0.15.0 to 0.16.0 by @dependabot in #71
Full Changelog: v0.0.14...v0.0.15
v0.0.14
New features
Bug fix
Dependencies
- Bump github.com/hashicorp/terraform-plugin-sdk/v2 from 2.25.0 to 2.26.1 by @dependabot in #60
Full Changelog: v0.0.13...v0.0.14
v0.0.13
What's Changed
Dependencies
- Bump github.com/hashicorp/terraform-plugin-framework from 1.1.1 to 1.2.0 by @dependabot in #61
Full Changelog: v0.0.12...v0.0.13
v0.0.12
Migrate to the new organization.
Full Changelog: v0.0.11...v0.0.12
v0.0.11
This release is focused on the Dashboard
improvements. There is a brand new simplified layout system.
- Dashboard variables now support textbox, adhoc, query, datasource, and interval options
- Added a few missing dashboard options: tags, description, version, time options, and time picker options
- The layout has been simplified for a better user experience
What's Changed
- Dashboard variables: support
textbox
,adhoc
,query
,datasource
,interval
by @iRevive in #49 - Dashboard: Always set
refresh
forDatasource
variable by @iRevive in #53 - Dashboard:
Ad hoc
variable - allow configuring filters by @iRevive in #54 - Dashboard options by @iRevive in #55
- Simplify dashboard layout by @iRevive in #57
Dependencies
- Bump github.com/hashicorp/terraform-plugin-docs from 0.13.0 to 0.14.1 by @dependabot in #45
Infrastructure
- Bump actions/setup-go from 3 to 4 by @dependabot in #48
- Run tests against
1.3.*
and1.4.*
Terraform version by @iRevive in #56
Full Changelog: v0.0.10...v0.0.11