1.1.7 • Published 18 days ago

rds_ssm_connect v1.1.7

Weekly downloads
-
License
-
Repository
-
Last release
18 days ago

AWS Environment Selector and Command Executor

This Node.js application allows you to select an AWS environment and execute various AWS commands within that environment. The environments are read from your AWS configuration file, and the application uses the aws-vault tool to manage your AWS credentials securely.

Prerequisites

Before running this application, make sure you have the following installed:

Also, ensure that your AWS configuration file (~/.aws/config) is appropriately set up with the environments you want to use.

Installation

You can install this application globally using npm:

npm install -g rds_ssm_connect
  1. Select the environment you want to use. The application will then execute a series of AWS commands within that environment.

Given your provided code, here's how to connect to the database:

Connecting to the Database

  1. Invoke rds_ssm_connect in your terminal:

    rds_ssm_connect

    The application will read your AWS configuration file and prompt you to select an environment.

  2. Select the environment you want to connect to. The application will then execute a series of AWS commands within that environment. It will do the following:

    • Extract the environments from the AWS configuration file
    • Get the name of the parameter containing the RDS password
    • Get the RDS credentials
    • Display the connection credentials and the connection string
    • Get the ID of the bastion instance
    • Get the endpoint of the RDS cluster
    • Start a port forwarding session to the RDS cluster
  3. After you've selected an environment and the AWS commands have been executed, you will receive the connection information. Here is an example of the output:

    Your connection string is: psql -h localhost -p <port> -U <username> -d oit
    Use the password: <password>
  4. Use the provided connection string and password to connect to your database via a database administration tool of your choice, such as pgAdmin, DBeaver, or the psql command-line interface.

Please note: Make sure the chosen database administration tool is installed and configured on your local machine. The specific instructions for connecting to a database would vary based on the tool used.

Requirements

This application requires the following Node.js modules:

  • child_process: For spawning child processes to execute AWS commands.
  • inquirer: For prompting the user to select an environment.
  • fs: For reading the AWS configuration file.
  • os: For getting the user's home directory.
  • path: For working with file paths.

These modules will be installed automatically when you install the application with npm.

How It Works

The application first reads the AWS configuration file and extracts the environments from it. It then prompts the user to select an environment.

After the user selects an environment, the application executes a series of AWS commands within that environment using aws-vault. These commands include:

  • Describing SSM parameters to get the parameter's name containing the RDS password.
  • Getting the value of the RDS password parameter.
  • Describing EC2 instances to get the ID of the bastion instance.
  • Describing RDS DB clusters to get the endpoint of the RDS cluster.
  • Starting an AWS SSM session to forward a local port to the RDS cluster.

The application logs the output of each command and any errors that occur.

1.1.7

18 days ago

1.1.6

4 months ago

1.0.10

8 months ago

1.1.5

8 months ago

1.0.9

9 months ago

1.0.6

10 months ago

1.0.5

10 months ago

1.0.4

10 months ago

1.0.3

10 months ago

1.0.1

10 months ago

1.0.0

10 months ago