Can certs be stored in Consul while global configuration (backends, etc) is maintained in file/TOML?

We want to use Consul to store our certificates, but we would prefer to use the file method to define our front/back/routing/etc as we have better control over this with our CI/CD process.

Is it possible to have the certs read from Consul but still have the rest of the global config read from file/TOML? Thanks!

Hello @KevinK,

Traefik v1 allows you to enable multiple providers, and have them both active at the same time.

This means that you can have your certificates stored in Consul, and your other dynamic configuration loaded from the file provider.

Please note that you will want to use the dynamic TLS method as demonstrated via this section of the documentation:
(https://docs.traefik.io/v1.7/user-guide/kv-config/#key-value-storage-structure)

Thanks so much Daniel!