From: Tom Hughes Date: Thu, 5 Oct 2023 12:58:38 +0000 (+0100) Subject: Manage cgimap postgres user X-Git-Url: https://git.openstreetmap.org./chef.git/commitdiff_plain/1a1f2aa40bec35e5c70011c60c3db8609f01357c Manage cgimap postgres user --- diff --git a/cookbooks/db/recipes/master.rb b/cookbooks/db/recipes/master.rb index a041cce74..ca6981709 100644 --- a/cookbooks/db/recipes/master.rb +++ b/cookbooks/db/recipes/master.rb @@ -41,6 +41,11 @@ postgresql_user "rails" do password passwords["rails"] end +postgresql_user "cgimap" do + cluster node[:db][:cluster] + password passwords["cgimap"] +end + postgresql_user "planetdump" do cluster node[:db][:cluster] password passwords["planetdump"]