From: Tom Hughes Date: Thu, 14 Jul 2016 08:40:10 +0000 (+0100) Subject: Configure authentication for GitHub X-Git-Url: https://git.openstreetmap.org/chef.git/commitdiff_plain/c71c0fed2044fc69506e85eedb4152732ea704ca?ds=sidebyside Configure authentication for GitHub --- diff --git a/cookbooks/web/definitions/rails_port.rb b/cookbooks/web/definitions/rails_port.rb index 2fcc1ee5b..c23587dd9 100644 --- a/cookbooks/web/definitions/rails_port.rb +++ b/cookbooks/web/definitions/rails_port.rb @@ -184,6 +184,11 @@ define :rails_port, :action => [:create, :enable] do line.gsub!(/^( *)#windowslive_auth_secret:.*$/, "\\1windowslive_auth_secret: \"#{params[:windowslive_auth_secret]}\"") end + if params[:github_auth_id] + line.gsub!(/^( *)#github_auth_id:.*$/, "\\1github_auth_id: \"#{params[:github_auth_id]}\"") + line.gsub!(/^( *)#github_auth_secret:.*$/, "\\1github_auth_secret: \"#{params[:github_auth_secret]}\"") + end + if params[:mapquest_key] line.gsub!(/^( *)#mapquest_key:.*$/, "\\1mapquest_key: \"#{params[:mapquest_key]}\"") end diff --git a/cookbooks/web/recipes/rails.rb b/cookbooks/web/recipes/rails.rb index 7f025493b..a388b2159 100644 --- a/cookbooks/web/recipes/rails.rb +++ b/cookbooks/web/recipes/rails.rb @@ -76,6 +76,8 @@ rails_port "www.openstreetmap.org" do facebook_auth_secret web_passwords["facebook_auth_secret"] windowslive_auth_id "0000000040153C51" windowslive_auth_secret web_passwords["windowslive_auth_secret"] + github_auth_id "acf7da34edee99e35499" + github_auth_secret web_passwords["github_auth_secret"] mapzen_valhalla_key web_passwords["mapzen_valhalla_key"] end