💡
deploydocs
  • Introduction
  • Going Live: Checklist : CARE
  • CARE: CLOUD DEPLOYMENT OVERVIEW
    • Cloud Infrastructure Diagram
    • Google Cloud deployment
      • Set up the network
      • Set up Databases
      • Create storage buckets
      • Create a GKE cluster
      • Configure GKE workloads
      • Post setup
    • Azure Deployment
    • AWS Deployment
  • CARE: Deploying Technology
  • Tech Overview: CARE
  • Tech Prerequisites: CARE
  • Setting up the server locally
  • Setting up AWS EKS
  • Setting up AWS RDS
  • Build and push docker image
  • Production Environment Variables
  • Deploying the projects on EKS
  • Requirements: AWS
  • Tech Infrastructure: CARE
  • Steps to Deploy: CARE
  • CARE: Deploying Operations
  • Operationalizing CARE in the field
  • Setting up the War-Room
  • Deployment Timeline
  • Ambulance Management System
    • SuperHero Network
  • TeleICU Tech Deployment
    • Setup Nursing Station Desktop
    • BPL Monitor Network Configuration
Powered by GitBook
On this page

Was this helpful?

Export as PDF

Setting up AWS RDS

AWS RDS can be used to store your application data. The Mumbai region servers can help in reducing latency for your services. In order to setup an RDS instance, head over to the RDS console and create a new instance. Here are a few things you may need to look out for:

  • The instance engine must be chosen as Postgres.

  • Choose the Production template

  • Choose the settings that are right for your use case.

  • Make sure you select the VPC you created for EKS and not any other VPC. The VPC will be immutable after the instance creation.

  • The port may be provided different from the standard port of 5432. This can be found in the 'Additional connectivity configuration' subsection under the 'Connectivity' section. While this does not add a huge security advantage, it may be desired.

  • Create an initial database inside the instance by giving an 'Initial database name' under the 'Additional configuration' section.

After completion of the instance creation, note the endpoint, port, username, password and the initial database name you provided. Your DATABASE_URL required in the future steps will then be postgres://<username>:<password>@<host>:<port>/<initial database name> and the POSTGIS_URL will be postgis://<username>:<password>@<host>:<port>/<initial database name>.

PreviousSetting up AWS EKSNextBuild and push docker image

Last updated 5 years ago

Was this helpful?