terraform-provider-sumologic
terraform-provider-sumologic copied to clipboard
Terraform provider for Sumo Logic
Take the following: ``` resource "sumologic_slo" "slo_tf_window_based" { name = "slo-tf-window-based" description = "example SLO created with terraform" parent_id = "0000000000000001" signal_type = "Latency" service = "auth" application = "login"...
## Steps to reproduce 1. Define a dashboard whose `title` and `name` do not match, e.g. ``` data "sumologic_personal_folder" "personalFolder" {} resource "sumologic_content" "crazy_dashboard" { parent_id = data.sumologic_personal_folder.personalFolder.id config =
According to the [official document](https://registry.terraform.io/providers/SumoLogic/sumologic/latest/docs/resources/dashboard#schema-for-sumo_search_panel), linked_dashboard should be a block list, however, it's reporting ``` ╷ │ Error: Too many linked_dashboard blocks │ │ on dashboards.tf line 338, in resource...
## Steps to reproduce 1. Define new sumologic_monitor with metrics_static_condition as trigger_conditions. Inside **resolution** object do NOT specify occurence_type. E.g.: ``` resource "sumologic_monitor" "tf_test_to_be_removed" { name = "Test" description =...
I want to add trace lists and service maps to my dashboards like I can in the web ui.
Related to #420. The following code works fine in `2.18.0` (applies successfully, monitor is created), but fails in `2.18.1`: ``` resource "sumologic_monitor" "tf_logs_monitor_1" { name = "Terraform Logs Monitor" description...
The documentation on `group_notifications` field of `sumologic_monitor`: > (Optional) Whether or not to group notifications for individual items that meet the trigger condition. Defaults to true. fails to mention the...
In `sumologic_monitor` resources you can use special variables, e.g. `{{NumQueryResults}}`. It's hard to guess their names. They should: - either be documented inline at https://registry.terraform.io/providers/SumoLogic/sumologic/latest/docs/resources/monitor - or at least a...
## Steps to reproduce 1. ``` resource "sumologic_field" "fieldtest1" { field_name = "fieldtest1" data_type = "String" } ``` 2. Run `terraform apply` **twice** ## Observed At the second run, the...
Medidata wants capability to have SLO as datasources.There is no way to lookup slo ids through terraform.This will help as they don't have to go through ids through API