How to close index by node attributes?

Hi All,

Is there a way to close all index by a node attribute? In a hot-warm architecture, for example, I want to close all warm indexes with

"index": {
        "routing": {
          "allocation": {
            "include": {
              "tag": "warm"
            }
          }
        },

I checked Curator but I did not see such a feature.

Curator 4 (still in development) will allow you to filter by shard allocation rules.

Thanks, I'll try Curator 4.