https://github.com/jessegersensonchess/aws-rds-cert-checker
outputs cert type of rds databases
https://github.com/jessegersensonchess/aws-rds-cert-checker
Last synced: 3 months ago
JSON representation
outputs cert type of rds databases
- Host: GitHub
- URL: https://github.com/jessegersensonchess/aws-rds-cert-checker
- Owner: jessegersensonchess
- Created: 2023-08-25T20:32:05.000Z (over 1 year ago)
- Default Branch: master
- Last Pushed: 2024-09-14T06:23:06.000Z (8 months ago)
- Last Synced: 2024-09-14T18:06:04.828Z (8 months ago)
- Language: Go
- Size: 11.7 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# AWS RDS Certificate Retriever
This application retrieves the Certificate Authority (CA) for each database instance in AWS using the RDS service.
## Prerequisites
- Docker installed on your machine.
## Setup & Run
### 1. Clone the repository
```bash
git clone https://github.com/jessegersenson/aws-rds-cert-checker
cd aws-rds-cert-checker
```### 2. Build the Docker Image
```
docker build -t aws-rds-cert-checker .
```### 3. Run the Docker Container
```
docker run --rm -v $HOME/.aws:/root/.aws aws-rds-cert-checker:latest
```
By default, the app looks for databases in the us-west-1 region with the default AWS profile. To specify different regions or profiles, modify the Go program accordingly and rebuild the Docker image.