Commit Graph

10 Commits

Author SHA1 Message Date
37d51b5ed5 Create /etc/vault.d/agent & /etc/vault.d/tokens directory.
```
--- a/cookbooks/vault/default.rb
+++ b/cookbooks/vault/default.rb
@@ -2,6 +2,14 @@ include_recipe './attributes.rb'

 include_recipe './install.rb'

+%w( agent tokens ).each do |d|
+  directory "/etc/vault.d/#{d}" do
+    owner 'vault'
+    group 'vault'
+    mode '0755'
+  end
+end
+
 if node['vault']['manager']
   include_recipe './setup.rb'
 end
```
2022-07-10 16:22:28 +09:00
4455fe6b62 Deploy /etc/logrotate.d/vault. 2022-07-02 11:40:31 +00:00
3bd4973c90 Deploy Vault policies. 2022-03-13 21:48:27 +09:00
cf79f30c4d Create /etc/vault.d/policies/. 2022-03-13 21:46:00 +09:00
da78e76d19 Deploy /etc/vault.d/vault.hcl. 2022-03-13 21:45:36 +09:00
7681522b6b 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'],
   }
 })
```
2022-03-13 21:45:17 +09:00
67fab4951a Retrieve hostname. 2022-03-13 21:45:01 +09:00
6fa35a923b Retrieve IP address. 2022-03-13 21:44:18 +09:00
a917563b06 Conduct setup procedures, when explicitly requested. 2022-03-13 21:43:52 +09:00
28e3f21141 Install Vault. 2022-03-12 11:59:44 +00:00