WIP Set up akaunting

This commit is contained in:
2024-12-16 12:04:08 +04:00
parent 31b7ff9217
commit 18c39305cb
18 changed files with 571 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
#
# Cookbook:: kosmos_akaunting
# Recipe:: pg_db
#
credentials = data_bag_item("credentials", "akaunting")
postgresql_user credentials["pg_username"] do
action :create
password credentials["pg_password"]
end
postgresql_database credentials["pg_database"] do
owner credentials["pg_username"]
action :create
end