diff options
Diffstat (limited to 'src/util/config.rs')
-rw-r--r-- | src/util/config.rs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/util/config.rs b/src/util/config.rs index 4b32f8ba..84a8e34f 100644 --- a/src/util/config.rs +++ b/src/util/config.rs @@ -168,6 +168,9 @@ pub struct ConsulServiceConfig { // Additional tags to add to the service #[serde(default)] pub tags: Vec<String>, + // Additional service metadata to add + #[serde(default)] + pub meta: Option<std::collections::HashMap<String, String>>, /// Skip TLS hostname verification #[serde(default)] pub tls_skip_verify: bool, |