We are trying to deploy multiple files at once to Kong Gateway using decK, all with different tags. However, we noticed that all resources created contain the same tags even though the file specifies different tags.
For example:
File 1:
_format_version: "3.0"
_info:
defaults: {}
select_tags:
- global
- global-authFile 2:
_format_version: "3.0"
_info:
defaults: {}
select_tags:
- global
- global-no-authSample command:
deck gateway sync --kong-addr 'http://localhost:8001/' --headers 'kong-admin-token:token' plugin1.yaml plugin2.yamlHow can we resolve this issue?