Skip to content

Latest commit

 

History

History
24 lines (15 loc) · 1.22 KB

.header.md

File metadata and controls

24 lines (15 loc) · 1.22 KB

terraform-aws-kong

Terraform Module to setup Kong(OSS) in ECS with self managed EC2 instances.

Architectural Diagram

Kong

Assumptions

This setup assumes that the ECS cluster that has Auto Scaling Group (ASG) exist with the name default. If you are using different name, you can provide those in the variables section of your Terraform configuration.

Adding Parameters to AWS Systems Manager Parameter Store

Ensure you have the AWS CLI installed on your machine. You can find the installation instructions for different operating systems in the official AWS CLI documentation: Install AWS CLI

Use the following commands to add the required parameters to AWS Systems Manager Parameter Store. These parameters are necessary for configuring your PostgreSQL database.

aws ssm put-parameter --name "/rds/POSTGRES_USERNAME" --value "value" --type "SecureString"
aws ssm put-parameter --name "/rds/POSTGRES_PASSWORD" --value "value" --type "SecureString"
aws ssm put-parameter --name "/rds/POSTGRES_DB_NAME" --value "value" --type "SecureString"