splunk / terraform-provider-splunk

Terraform Provider for Splunk
Mozilla Public License 2.0
104 stars 78 forks source link

adding saved event types feature #90

Open peter-k-r opened 3 years ago

peter-k-r commented 3 years ago

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    = 1
    search      = "index=main"
    color       = "blue"
    tags        = "tag"
    acl {
      owner = "admin"
      sharing = "app"
      app = "launcher"
    }
}

Argument Reference

For latest resource argument reference: https://docs.splunk.com/Documentation/Splunk/latest/RESTREF/RESTknowledge#saved.2Feventtypes

This resource block supports the following arguments:

Attribute Reference

In addition to all arguments above, This resource block exports the following arguments:

dlandtwing commented 7 months ago

I would love to see support for event types in the provider. The PR is still mergeable and the resource works fine. Is there anything I can do to help so that this PR is merged?

peter-k-r commented 7 months ago

Is there anything I can do to help so that this PR is merged? Thanks for looking at this, I made this 3 years ago for a client, If we could find a reviewer I would be happy to have this merged to master (I was unsure on how this worked in this PR - so I just left it alone).