graphql-engine/server/test-manual/postgres-replicas-with-ssl-client-certs/sample_metadata.json
Philip Lykke Carlsen f54b5cd3ef A collection of scripts to setup read replicas wtih ssl
PR-URL: https://github.com/hasura/graphql-engine-mono/pull/10777
GitOrigin-RevId: 0243fa6f2b20c2482be904702055d0470e855284
2024-04-24 15:48:14 +00:00

31 lines
958 B
JSON

{
"sources": [
{
"kind": "postgres",
"name": "test-pg-client-certs-and-replica",
"tables": [
],
"configuration": {
"connection_info": {
"database_url": "postgresql://postgres@localhost:32838",
"isolation_level": "read-committed",
"ssl_configuration": {
"sslkey": {
"from_env": "HGE_PGSSLKEY"
},
"sslcert": {
"from_env": "HGE_PGSSLCERT"
},
"sslmode": "verify-ca",
"sslrootcert": {
"from_env": "HGE_PGSSLROOTCERT"
}
},
"use_prepared_statements": false
}
}
}
],
"version": 3
}