Specify the default `Vault` managers.

```
--- a/cookbooks/vault/attributes.rb
+++ b/cookbooks/vault/attributes.rb
@@ -21,5 +21,6 @@ node.reverse_merge!({
     'manager' => false,
     'ipaddr' => ipaddr,
     'hostname' => hostname,
+    'ips' => ['192.168.10.141', '192.168.10.142', '192.168.10.143'],
   }
 })
```
This commit is contained in:
Kazuhiro MUSASHI 2022-03-13 14:13:52 +09:00
parent 67fab4951a
commit 7681522b6b
1 changed files with 1 additions and 0 deletions

View File

@ -21,5 +21,6 @@ node.reverse_merge!({
'manager' => false, 'manager' => false,
'ipaddr' => ipaddr, 'ipaddr' => ipaddr,
'hostname' => hostname, 'hostname' => hostname,
'ips' => ['192.168.10.141', '192.168.10.142', '192.168.10.143'],
} }
}) })