diff --git a/solution/infrastructure/pgadmin/.env.template b/solution/infrastructure/pgadmin/.env.template new file mode 100644 index 0000000..32b6c66 --- /dev/null +++ b/solution/infrastructure/pgadmin/.env.template @@ -0,0 +1,2 @@ +PGADMIN_DEFAULT_EMAIL=admin@mail.com +PGADMIN_DEFAULT_PASSWORD_FILE=/run/secrets/pgadmin_password diff --git a/solution/infrastructure/pgadmin/password b/solution/infrastructure/pgadmin/password new file mode 100644 index 0000000..f77b004 --- /dev/null +++ b/solution/infrastructure/pgadmin/password @@ -0,0 +1 @@ +admin \ No newline at end of file diff --git a/solution/infrastructure/pgadmin/servers.json b/solution/infrastructure/pgadmin/servers.json new file mode 100644 index 0000000..dfb1d7b --- /dev/null +++ b/solution/infrastructure/pgadmin/servers.json @@ -0,0 +1,18 @@ +{ + "Servers": { + "1": { + "Name": "default", + "Group": "Servers", + "Host": "postgres", + "Port": 5432, + "MaintenanceDB": "postgres", + "Username": "postgres", + "KerberosAuthentication": false, + "ConnectionParameters": { + "sslmode": "prefer", + "connect_timeout": 10 + }, + "Tags": [] + } + } +}