17 lines
280 B
Ruby
17 lines
280 B
Ruby
#
|
|
# Cookbook:: kosmos_gitea
|
|
# Recipe:: pg_db
|
|
#
|
|
|
|
gitea_data_bag_item = data_bag_item("credentials", "gitea")
|
|
|
|
postgresql_user "gitea" do
|
|
action :create
|
|
password gitea_data_bag_item["postgresql_password"]
|
|
end
|
|
|
|
postgresql_database "gitea" do
|
|
owner "gitea"
|
|
action :create
|
|
end
|