]> git.openstreetmap.org Git - chef.git/blob - roles/palulukon.rb
Add role for palulukon
[chef.git] / roles / palulukon.rb
1 name "palulukon"
2 description "Master role applied to palulukon"
3
4 default_attributes(
5   :networking => {
6     :interfaces => {
7       :external_ipv4 => {
8         :interface => "ens5",
9         :role => :external,
10         :family => :inet,
11         :address => "172.31.37.101",
12         :prefix => "20",
13         :gateway => "172.31.32.1"
14       }
15     }
16   }
17 )
18
19 override_attributes(
20   :networking => {
21     :nameservers => ["172.31.0.2"]
22   }
23 )
24
25 run_list(
26   "role[aws-us-east-2]"
27 )