Skip to content

Commit 2e10afe

Browse files
authored
Remove title from playlist resource to fix acceptance tests (#2394)
* Remove title from playlist resource * Update docs
1 parent 2f55943 commit 2e10afe

File tree

2 files changed

+0
-4
lines changed

2 files changed

+0
-4
lines changed

docs/resources/playlist.md

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,12 @@ resource "grafana_playlist" "test" {
2222
// Order is required, and is the order in which the dashboards will be displayed
2323
// The block order is ignored
2424
order = 2
25-
title = "Terraform Dashboard By Tag"
2625
type = "dashboard_by_tag"
2726
value = "terraform"
2827
}
2928
3029
item {
3130
order = 1
32-
title = "Terraform Dashboard By UID"
3331
type = "dashboard_by_uid"
3432
value = "cIBgcSjkk"
3533
}

examples/resources/grafana_playlist/resource.tf

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,12 @@ resource "grafana_playlist" "test" {
66
// Order is required, and is the order in which the dashboards will be displayed
77
// The block order is ignored
88
order = 2
9-
title = "Terraform Dashboard By Tag"
109
type = "dashboard_by_tag"
1110
value = "terraform"
1211
}
1312

1413
item {
1514
order = 1
16-
title = "Terraform Dashboard By UID"
1715
type = "dashboard_by_uid"
1816
value = "cIBgcSjkk"
1917
}

0 commit comments

Comments
 (0)