You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I see that the migration requires a PostgreSQL client to handle the database calls. Would it be possible to extend the library to use the aws ask client to connect to an Aurora Serverless V1 database? This would make configuring a VPC, or opening the database up to the public obsolete and greatly reduce complexity in using node-pg-migrate to manage migrations on Aurora Serverless clusters on AWS.
The text was updated successfully, but these errors were encountered:
@sthuber90 I think you are describing a very specific use-case.
You need to use AWS CDK to manage infrastructure and deploy AWS RDS Aurora instance with CDK.
Then you can add to CDK outputs the newly deployed RDS URL and port. Or you can find them in AWS console.
Use these to set DATABASE_URL env variable as in this package readme.
I see that the migration requires a PostgreSQL client to handle the database calls. Would it be possible to extend the library to use the aws ask client to connect to an Aurora Serverless V1 database? This would make configuring a VPC, or opening the database up to the public obsolete and greatly reduce complexity in using node-pg-migrate to manage migrations on Aurora Serverless clusters on AWS.
The text was updated successfully, but these errors were encountered: