]> git.openstreetmap.org Git - chef.git/blob - roles/equinix-ams.rb
Revert "community: Fix CSRF issue with monkey patch fix"
[chef.git] / roles / equinix-ams.rb
1 name "equinix-ams"
2 description "Role applied to all servers at Equinix Amsterdam"
3
4 default_attributes(
5   :networking => {
6     :roles => {
7       :internal => {
8         :inet => {
9           :prefix => "20",
10           :gateway => "10.0.48.14",
11           :routes => {
12             "10.0.0.0/8" => { :via => "10.0.48.14" }
13           }
14         }
15       },
16       :external => {
17         :zone => "ams"
18       }
19     }
20   },
21   :prometheus => {
22     :metrics => {
23       :host_location => {
24         :help => "Host location",
25         :labels => { :site => "amsterdam" }
26       }
27     }
28   },
29   :web => {
30     :readonly_database_host => "snap-01.ams.openstreetmap.org",
31     :primary_cluster => true
32   }
33 )
34
35 override_attributes(
36   :networking => {
37     :nameservers => ["10.0.48.14", "8.8.8.8", "8.8.4.4"],
38     :search => ["ams.openstreetmap.org", "openstreetmap.org"]
39   },
40   :ntp => {
41     :servers => ["0.nl.pool.ntp.org", "1.nl.pool.ntp.org", "europe.pool.ntp.org"]
42   }
43 )
44
45 run_list(
46   "role[nl]"
47 )