Thanks for replying, I am definitely making concurrent changes to switchports with the same stack. For example:
resource "meraki_devices_switch_ports" "switch1" {
for_each = var.sw1_ports_map
port_id = each.value.port_id
name = each.value.port_name
..
.....
So I don't have to create 48 individual switch port resources and use "depends_on" to iterate through 1 at a time.