terraform-provider-sumologic
terraform-provider-sumologic copied to clipboard
Terraform provider for Sumo Logic
I don't know which is right and which is wrong, but... 1. The API for Dashboards (new) seems to be happy about accepting a variable filter which is empty string:...
I have provisioned the user using terraform as: ``` provider "sumologic" { access_id = var.sumologic_access_id access_key = var.sumologic_access_key environment = "us1" version = "= 2.0" } resource "sumologic_user" "testuser" {...
I don't know the steps to reproduce, but one of our CI builds has failed with: ``` 17:32:43 Releasing state lock. This may take a few moments... 17:32:44 17:32:44 Stack...
Currently in the terraform provider documentation for a `sumologic_dashboard`, there is no way of knowing the different options available for the visual_settings in either the `text_panel` or `sumo_search_panel`. In both...
We started using SumoLogic by defining roles and adding users manually but want to manage via terraform both roles and users. We did tried to convert existing roles manually to...
Need a **webhookId** in notification block to create sumologic_content
## Steps to reproduce ``` data "sumologic_personal_folder" "personalFolder" {} resource "sumologic_folder" "folder504" { name = "folder504" parent_id = data.sumologic_personal_folder.personalFolder.id } ``` ## Observed ``` │ Error: Missing required argument │...
## Steps to reproduce Define a `sumologic_cloudwatch_source` for CloudWatch metrics collection **without** specifying the regions, e.g. ``` path { type = "CloudWatchPath" limit_to_namespaces = ["AWS/S3"] } ``` Run `terraform apply`...
It'd be nice if you could limit which account / organization the terraform code applied to, something like ``` provider "sumologic" { environment = "us2" account_id = "myworkaccount" } ```...
Hi Team.. Thanks for the provider. We are facing an issue while connecting the cloudwatch logs to sumologic. Our terraform version: **0.11.13** ``` resource "sumologic_cloudwatch_source" "terraform_cloudwatch_source" { name = "AWS...