Greg Oledzki
Greg Oledzki
Our CI build has observed this failure several times: 1. First, there are a lot of ``` Error: Request cancelled [...] The plugin.(*GRPCProvider).UpgradeResourceState request was cancelled. ``` 2. And eventually...
Happened once for me: ``` │ Error: Request cancelled │ │ with module.personal[0].sumologic_folder.personal, │ on shared/personal/main.tf line 4, in resource "sumologic_folder" "personal": │ 4: resource "sumologic_folder" "personal" { │ │...
## Steps to reproduce 1. Have a `sumologic_content` with a dashboard definition with one of the panels mentioning a scheduled view which doesn't exist. 2. Run `terraform apply` on it...
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 =
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...
## Steps to reproduce 1. Define a field which uses some upper-case characters in its name, e.g. ``` resource "sumologic_field" "TotallyDifferent" { count = 1 field_name = "TotallyDifferent" data_type =...