From 6539cf997c409604ff9005ea1caf736ee594d63c Mon Sep 17 00:00:00 2001 From: Peter Junos Date: Thu, 8 Sep 2022 10:58:49 +0200 Subject: [PATCH] Make set of indexes a set Order matter for a list. In reality, we don't care and we want to see a list like that. --- splunk/resource_splunk_inputs_http_event_collector.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/splunk/resource_splunk_inputs_http_event_collector.go b/splunk/resource_splunk_inputs_http_event_collector.go index 90d2ddf3..7dc6e9ef 100644 --- a/splunk/resource_splunk_inputs_http_event_collector.go +++ b/splunk/resource_splunk_inputs_http_event_collector.go @@ -33,7 +33,7 @@ func inputsHttpEventCollector() *schema.Resource { Description: "Index to store generated events", }, "indexes": { - Type: schema.TypeList, + Type: schema.TypeSet, Optional: true, Computed: true, Elem: &schema.Schema{Type: schema.TypeString},