Skip to content

Releases: lightstep/terraform-provider-lightstep

v1.73.3

14 Mar 02:08
4ee625f
Compare
Choose a tag to compare
1.73.3

v1.73.2

13 Mar 20:46
519424d
Compare
Choose a tag to compare
Add template variable support to Terraform provider (#126)

v1.73.1

10 Mar 01:29
087a807
Compare
Choose a tag to compare
1.73.1

v1.73.0

09 Mar 23:40
a7b3fca
Compare
Choose a tag to compare
1.73.0

v1.72.3

07 Mar 23:50
Compare
Choose a tag to compare
Update test

v1.72.2

07 Mar 22:25
1637314
Compare
Choose a tag to compare
1.72.2

v1.72.1

07 Mar 16:42
a601589
Compare
Choose a tag to compare
1.72.1

v1.72.0

03 Mar 02:47
efa6da7
Compare
Choose a tag to compare
Add dashboard labels (#127)

Adds a new `label` option to the `lightstep_dashboard` resource. 

Labels can have a key + value or just a value, e.g.

```
resource "lightstep_dashboard" "labels" {
  project_name   = "terraform-provider-tests"
  dashboard_name = "Acceptance Test Dashboard"

  label {
    key   = "team"
    value = "ontology"
  }

  label {
    value = "terraform"
  }

  chart {
    name = "Chart Number One"
    rank = 1
    type = "timeseries"
    query {
      hidden              = false
      query_name          = "a"
      display             = "bar"
      query_string        = "metric requests | rate 10m"
    }
  }
}
```

v1.71.0

09 Feb 20:55
d32c7ea
Compare
Choose a tag to compare
1.71.0

v1.70.14

08 Feb 00:52
e98e687
Compare
Choose a tag to compare

What's Changed

  • Check type assertions and added GetStatusCode: See #122

Full Changelog: v1.70.13...v1.70.14