vuls: init at 0.27.0 (#348530)
[NixPkgs.git] / nixos / tests / consul-template.nix
blobcbffa94569e38b1062ed7991cb4ef00ae7255a5a
1 import ./make-test-python.nix ({ ... }: {
2   name = "consul-template";
4   nodes.machine = { ... }: {
5     services.consul-template.instances.example.settings = {
6       template = [{
7         contents = ''
8           {{ key "example" }}
9         '';
10         perms = "0600";
11         destination = "/example";
12       }];
13     };
15     services.consul = {
16       enable = true;
17       extraConfig = {
18         server = true;
19         bootstrap_expect = 1;
20         bind_addr = "127.0.0.1";
21       };
22     };
23   };
25   testScript = ''
26     machine.wait_for_unit("consul.service")
27     machine.wait_for_open_port(8500)
29     machine.wait_for_unit("consul-template-example.service")
31     machine.wait_until_succeeds('consul kv put example example')
33     machine.wait_for_file("/example")
34     machine.succeed('grep "example" /example')
35   '';