From a814d6e4f6938677171b8b9442b8e8bd2b57c147 Mon Sep 17 00:00:00 2001 From: Catalin Muresan Date: Thu, 23 Nov 2023 13:47:30 +0000 Subject: [PATCH] Changed output to set, since there are no duplicates --- libvirt/data_source_libvirt_node_devices.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libvirt/data_source_libvirt_node_devices.go b/libvirt/data_source_libvirt_node_devices.go index fb8ac4284..0f8339ac2 100644 --- a/libvirt/data_source_libvirt_node_devices.go +++ b/libvirt/data_source_libvirt_node_devices.go @@ -30,7 +30,7 @@ func datasourceLibvirtNodeDevices() *schema.Resource { Optional: true, }, "devices": { - Type: schema.TypeList, + Type: schema.TypeSet, Computed: true, Elem: &schema.Schema{ Type: schema.TypeString,