pez-infra/terraform/grafana/fleet_collectors.tf
Rasmus "Pez" Wejlgaard 043c783361
Some checks are pending
Deploy (on merge) / Discover hosts (push) Waiting to run
Deploy (on merge) / Deploy → (push) Blocked by required conditions
Terraform / Plan (push) Waiting to run
Terraform / Apply (push) Blocked by required conditions
Grafana Cloud Migration (#94)
* Grafana Cloud migration, adding dashboards, fleet, alloy and synthetics

* modulize stuff now that we have multiple substantial things in here

* provider updates and new secrets

* remove grafana and prometheus from ansible
2026-05-04 13:40:30 +01:00

48 lines
955 B
HCL

resource "grafana_fleet_management_collector" "london_a" {
id = "london-a"
remote_attributes = {
location = "london"
}
}
resource "grafana_fleet_management_collector" "london_b" {
id = "london-b"
remote_attributes = {
location = "london"
}
}
resource "grafana_fleet_management_collector" "london_c" {
id = "london-c"
remote_attributes = {
location = "london"
}
}
resource "grafana_fleet_management_collector" "copenhagen_a" {
id = "copenhagen-a"
remote_attributes = {
location = "copenhagen"
}
}
resource "grafana_fleet_management_collector" "copenhagen_c" {
id = "copenhagen-c"
remote_attributes = {
location = "copenhagen"
}
}
resource "grafana_fleet_management_collector" "helsinki_a" {
id = "helsinki-a"
remote_attributes = {
location = "cloud"
}
}
resource "grafana_fleet_management_collector" "nuremberg_a" {
id = "nuremberg-a"
remote_attributes = {
location = "cloud"
}
}