-
Notifications
You must be signed in to change notification settings - Fork 245
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Tests are failing due to: - #1764 - #1763 The `go.mod` update is needed for Go 1.23 due to grafana/pyroscope-go#118
- Loading branch information
1 parent
f58157e
commit b023e6c
Showing
5 changed files
with
16 additions
and
16 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
import { | ||
to = grafana_dashboard._1_large-dashboard-test | ||
id = "1:large-dashboard-test" | ||
to = grafana_dashboard.large-dashboard-test | ||
id = "large-dashboard-test" | ||
} | ||
|
||
import { | ||
to = grafana_folder._1_folder-with-large-dashboard | ||
id = "1:folder-with-large-dashboard" | ||
to = grafana_folder.folder-with-large-dashboard | ||
id = "folder-with-large-dashboard" | ||
} |
12 changes: 6 additions & 6 deletions
12
pkg/generate/testdata/generate/dashboard-large/resources.tf
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
# __generated__ by Terraform | ||
# Please review these resources and move them into your main configuration files. | ||
|
||
# __generated__ by Terraform from "1:large-dashboard-test" | ||
resource "grafana_dashboard" "_1_large-dashboard-test" { | ||
config_json = file("${path.module}/dashboards/_1_large-dashboard-test.json") | ||
folder = grafana_folder._1_folder-with-large-dashboard.uid | ||
# __generated__ by Terraform from "large-dashboard-test" | ||
resource "grafana_dashboard" "large-dashboard-test" { | ||
config_json = file("${path.module}/dashboards/large-dashboard-test.json") | ||
folder = grafana_folder.folder-with-large-dashboard.uid | ||
} | ||
|
||
# __generated__ by Terraform from "1:folder-with-large-dashboard" | ||
resource "grafana_folder" "_1_folder-with-large-dashboard" { | ||
# __generated__ by Terraform from "folder-with-large-dashboard" | ||
resource "grafana_folder" "folder-with-large-dashboard" { | ||
title = "Folder with Large Dashboard" | ||
uid = "folder-with-large-dashboard" | ||
} |