]> git.openstreetmap.org Git - chef.git/commitdiff
Configure TOTP key for the web site
authorTom Hughes <tom@compton.nu>
Mon, 2 Jan 2017 20:44:37 +0000 (20:44 +0000)
committerTom Hughes <tom@compton.nu>
Mon, 2 Jan 2017 20:44:37 +0000 (20:44 +0000)
cookbooks/web/definitions/rails_port.rb
cookbooks/web/recipes/rails.rb

index 06a68504b2847b9ec0b38f7e41bc1b6fa44dae0d..bbc3d60d92073235a967d078ef0495ff6d2ee6e5 100644 (file)
@@ -204,6 +204,10 @@ define :rails_port, :action => [:create, :enable] do
       line.gsub!(/^( *)#thunderforest_key:.*$/, "\\1thunderforest_key: \"#{params[:thunderforest_key]}\"")
     end
 
+    if params[:totp_key]
+      line.gsub!(/^( *)#totp_key:.*$/, "\\1totp_key: \"#{params[:totp_key]}\"")
+    end
+
     line.gsub!(/^( *)require_terms_seen:.*$/, "\\1require_terms_seen: true")
     line.gsub!(/^( *)require_terms_agreed:.*$/, "\\1require_terms_agreed: true")
 
index d58026ca348238cf91e5121321554d10e35bf48d..90efbb421839fa8ffd30d605c5824396e5f7e4ce 100644 (file)
@@ -80,6 +80,7 @@ rails_port "www.openstreetmap.org" do
   wikipedia_auth_secret web_passwords["wikipedia_auth_secret"]
   mapzen_valhalla_key web_passwords["mapzen_valhalla_key"]
   thunderforest_key web_passwords["thunderforest_key"]
+  totp_key web_passwords["totp_key"]
 end
 
 package "libjson-xs-perl"