terraform-provider-splunk icon indicating copy to clipboard operation
terraform-provider-splunk copied to clipboard

Terraform Provider for Splunk

Results 79 terraform-provider-splunk issues
Sort by recently updated
recently updated
newest added

Steps to reproduce: 1. Create a `splunk_saved_searches` resource 2. Edit the resource 3. Apply Changes 4. Apply will fail with a 400 Error Expected Result: * making changes to a...

This commit will support log event actions for saved_search resources. I have validated this against a local splunk instance and confirmed it works as intended.

Hello, I am working with the `splunk_data_ui_views` and deployed a dashboard via terraform: https://registry.terraform.io/providers/splunk/splunk/latest/docs/resources/data_ui_views ### Code in `main.tf` ```terraform resource "splunk_data_ui_views" "my_dashboard" { name = "Terraform_Sample_Dashboard" eai_data = file("my_dashboard.xml") acl...

I do have Splunk cloud trail instance & I am referring below 2 links for Creating alert. https://registry.terraform.io/providers/splunk/splunk/latest/docs provider "splunk" { url = "[prd-p-t5l7m.splunkcloud.com](http://prd-p-t5l7m.splunkcloud.com/)" auth_token = "xxxxxxxx" insecure_skip_verify = true...

As the title said, we have splunk cloud instance with REST endpoint enabled, would we be able to use this provider?

# Resource: splunk_saved_eventtypes Create and manage saved searches. ## Example Usage ``` resource "splunk_saved_event_types" "test" { name = "test" description = "Test New event description" disabled = "0" priority =...

Hi, unfortunately the GPG key has expired: ╷ │ Error: Failed to install provider │ │ Error while installing splunk/splunk v1.4.22: error checking signature: openpgp: key expired ╵ Regards!

Hi, we have the need to use this provider only on certain environment ``` provider "splunk" { url = try(local.env_url,"") auth_token = try(local.auth_token,"") } ``` The resources that use that...

`url` argument is now treated as URL instead of host. Fixes #91

Configuring a URL with a PATH provides an error, for example: ``` provider "splunk" { url = "https://hostname:443/some/path" auth_token = var.splunk_auth_token insecure_skip_verify = true } ``` Provides the error: ```...