diff options
author | tv <tv@krebsco.de> | 2015-07-10 20:58:55 +0200 |
---|---|---|
committer | tv <tv@krebsco.de> | 2015-07-10 20:58:55 +0200 |
commit | ddbae50486682115ddaa6ba9cacfbd721c034472 (patch) | |
tree | 6c38c7f5c2843f4c75d277fe0287992d76389430 /modules/tv/config/consul-server.nix | |
parent | f9af1cb7a2cc898aee6ada1a934cad6d8971dd87 (diff) |
tv.consul: init
Diffstat (limited to 'modules/tv/config/consul-server.nix')
-rw-r--r-- | modules/tv/config/consul-server.nix | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/modules/tv/config/consul-server.nix b/modules/tv/config/consul-server.nix new file mode 100644 index 0000000..4cedbd3 --- /dev/null +++ b/modules/tv/config/consul-server.nix @@ -0,0 +1,22 @@ +{ config, ... }: + +{ + imports = [ ../../tv/consul ]; + tv.consul = rec { + enable = true; + + inherit (config.tv.identity) self; + inherit (self) dc; + + server = true; + + hosts = with config.tv.identity.hosts; [ + # TODO get this list automatically from each host where tv.consul.enable is true + cd + mkdir + nomic + rmdir + #wu + ]; + }; +} |