File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -905,7 +905,7 @@ resource "catalystcenter_fabric_multicast_virtual_networks" "multicast" {
905905 if contains (local. sites , fabric_site) && length (config. virtual_networks ) > 0
906906 }
907907
908- fabric_id = try (local. combined_fabric_id_list [each . key ]. id , null )
908+ fabric_id = try (local. combined_fabric_id_list [each . key ], null )
909909
910910 virtual_networks = each. value . virtual_networks
911911
Original file line number Diff line number Diff line change @@ -50,7 +50,7 @@ resource "catalystcenter_device_replacement_workflow" "rma" {
5050 && try (device. serial_number , null ) != null
5151 && contains (local. sites , try (device. site , " NONE" ))
5252 && try (data. catalystcenter_device_detail . rma_device [device . name ]. serial_number , null ) != null
53- && device.serial_number != data.catalystcenter_device_detail.rma_device[device.name].serial_number
53+ && try ( device. serial_number , " " ) != try ( data. catalystcenter_device_detail . rma_device [device . name ]. serial_number , " " )
5454 }
5555
5656 faulty_device_serial_number = data. catalystcenter_device_detail . rma_device [each . key ]. serial_number
You can’t perform that action at this time.
0 commit comments