Skip to content
Kong Logo | Kong Docs Logo
search
  • Docs
    • Explore the API Specs
      View all API Specs View all API Specs View all API Specs arrow image
    • Documentation
      API Specs
      Kong Gateway
      Lightweight, fast, and flexible cloud-native API gateway
      Kong Konnect
      Single platform for SaaS end-to-end connectivity
      Kong Mesh
      Enterprise service mesh based on Kuma and Envoy
      decK
      Helps manage Kong’s configuration in a declarative fashion
      Kong Ingress Controller
      Works inside a Kubernetes cluster and configures Kong to proxy traffic
      Kong Gateway Operator
      Manage your Kong deployments on Kubernetes using YAML Manifests
      Insomnia
      Collaborative API development platform
      Kuma
      Open-source distributed control plane with a bundled Envoy Proxy integration
  • Plugin Hub
    • Explore the Plugin Hub
      View all plugins View all plugins View all plugins arrow image
    • Functionality View all View all arrow image
      View all plugins
      Authentication's icon
      Authentication
      Protect your services with an authentication layer
      Security's icon
      Security
      Protect your services with additional security layer
      Traffic Control's icon
      Traffic Control
      Manage, throttle and restrict inbound and outbound API traffic
      Serverless's icon
      Serverless
      Invoke serverless functions in combination with other plugins
      Analytics & Monitoring's icon
      Analytics & Monitoring
      Visualize, inspect and monitor APIs and microservices traffic
      Transformations's icon
      Transformations
      Transform request and responses on the fly on Kong
      Logging's icon
      Logging
      Log request and response data using the best transport for your infrastructure
  • Support
  • Community
  • Kong Academy
Get a Demo Start Free Trial
Kong Gateway
3.5.x (latest)
  • Home icon
  • Kong Gateway
  • Kong Enterprise
  • Secrets Management
  • How To
  • Securing Kong Gateway database credentials with AWS Secrets Manager
github-edit-pageEdit this page
report-issueReport an issue
  • Kong Gateway
  • Kong Konnect
  • Kong Mesh
  • Plugin Hub
  • decK
  • Kong Ingress Controller
  • Kong Gateway Operator
  • Insomnia
  • Kuma

  • Docs contribution guidelines
  • 3.5.x (latest)
  • 3.4.x
  • 3.3.x
  • 3.2.x
  • 3.1.x
  • 3.0.x
  • 2.8.x
  • 2.7.x
  • 2.6.x
  • Archive (pre-2.6)
enterprise-switcher-icon Switch to OSS
On this pageOn this page
  • Prerequisites
  • Configure Kong Gateway to use AWS Secrets Manager
  • More information

Securing Kong Gateway database credentials with AWS Secrets Manager

Application secrets include sensitive data like passwords, keys, certifications, tokens, and other items which must be secured. Kong Gateway supports Secrets Management which allows you to store secrets in various secure backend systems and helps you protect them from accidental exposure.

Traditionally, Kong Gateway is configured with static credentials for connecting to its external database. This guide will show you how to configure Kong Gateway to use AWS Secrets Manager to read database credentials securely instead the conventional file or environment variable based solutions.

For this guide, you will run the PostgreSQL and Kong Gateway locally on Docker. You will create a secret in the AWS Secrets Manager and deploy Kong Gateway using a vault reference to read the value securely.

Prerequisites

  • An AWS account. Your account must have the proper IAM permissions to allow access to the AWS Secrets Manager service. Permission policy examples can be found in the AWS Secrets Manager documentation. Additionally, you must have the following permissions:
    • secretsmanager:CreateSecret
    • secretsmanager:PutSecretValue
    • secretsmanager:GetSecretValue
  • The AWS CLI installed and configured. You must be able to configure the gateway environment with AWS CLI environment variables because this is the method that Kong Gateway uses to connect to the Secrets Manager service.

  • Docker installed.
  • curl is required on your system to send requests to the gateway for testing. Most systems come with curl pre-installed.

Configure Kong Gateway to use AWS Secrets Manager

  1. Create a Docker network for Kong Gateway and the database to communicate over:

    docker network create kong-net
    
  2. Configure and run the database:

    docker run -d --name kong-database \
      --network=kong-net \
      -p 5432:5432 \
      -e "POSTGRES_USER=admin" \
      -e "POSTGRES_PASSWORD=password" \
      postgres:9.6
    

    The username and password used above are the PostgreSQL master credentials, not the username and password you will use to authorize Kong Gateway with the database.

    Note: A production deployment can use AWS RDS for PostgreSQL which supports direct integration with AWS Secrets Manager.

  3. Create a username and password for Kong Gateway’s database and store them in environment variables to use in this guide:

    KONG_PG_USER=kong
    KONG_PG_PASSWORD=KongFTW
    
  4. Create the Kong Gateway database user inside the PostgreSQL server container:

    docker exec -it kong-database psql -U admin -c \
      "CREATE USER ${KONG_PG_USER} WITH PASSWORD '${KONG_PG_PASSWORD}'"
    

    You should see:

    CREATE ROLE
    
  5. Create a database named kong inside the PostgreSQL container:

    docker exec -it kong-database psql -U admin -c "CREATE DATABASE kong OWNER ${KONG_PG_USER};"
    

    You should see:

    CREATE DATABASE
    
  6. Create a new AWS secret:

    aws secretsmanager create-secret --name kong-gateway-database \
      --description "Kong GW Database credentials"
    
  7. Update the secret value with the username and password from the variables assigned above. If you want to update the secret values later, this is the command you would use:

    aws secretsmanager put-secret-value --secret-id kong-gateway-database \
      --secret-string '{"pg_user":"'${KONG_PG_USER}'","pg_password":"'${KONG_PG_PASSWORD}'"}'
    
  8. Before launching Kong Gateway, run the following command to perform the database migrations:

    Note: Currently, the kong migrations tool does not support Secrets Management, so this step must be done with traditional Kong Gateway configuration options. In this example, we are passing the secrets to Docker via the environment.

    docker run --rm \
      --network=kong-net \
      -e "KONG_DATABASE=postgres" \
      -e "KONG_PG_HOST=kong-database" \
      -e "KONG_PG_USER=$KONG_PG_USER" \
      -e "KONG_PG_PASSWORD=$KONG_PG_PASSWORD" \
      kong/kong-gateway:latest kong migrations bootstrap
    
  9. Launch Kong Gateway configured to use values it can reference for the database username and password. To authorize Kong Gateway to connect to AWS Secrets Manager, you need to provide IAM security credentials via environment variables.

    You specify the database credentials using the standard KONG_ environment variable names, but instead of providing a static value you use a reference value.

    The format looks like this: {vault://aws/kong-gateway-database/pg_user}. In this example, the reference format contains aws as the backend vault type, kong-gateway-database matches the name of the secret created earlier, and pg_user is the JSON field name you want to reference in the secret value.

    See the AWS Secrets Manager documentation for more details.

    Assuming you have set AWS_ACCESS_KEY_ID, AWS_SECRET_ACCESS_KEY, AWS_REGION, and AWS_SESSION_TOKEN in the current environment, start Kong Gateway like this:

    docker run --rm \
      --network=kong-net \
      -e "KONG_DATABASE=postgres" \
      -e "KONG_PG_HOST=kong-database" \
      -e "AWS_ACCESS_KEY_ID" \
      -e "AWS_SECRET_ACCESS_KEY" \
      -e "AWS_REGION" \
      -e "AWS_SESSION_TOKEN" \
      -e "KONG_PG_USER={vault://aws/kong-gateway-database/pg_user}" \
      -e "KONG_PG_PASSWORD={vault://aws/kong-gateway-database/pg_password}" \
      kong/kong-gateway:3.5.x
    

    After a moment, Kong Gateway should be running, which you can verify with the Admin API:

    curl -s localhost:8001
    

    You should receive a JSON response with various information from Kong Gateway.

The Secrets Management documentation contains more information about available backends and configuration details.

More information

  • See the following documentation for supported vault backends that Kong Gateway can integrate with:
    • Environment Variables Vault
    • AWS Secrets Manager
    • Hashicorp Vault
    • Google Secrets Management
  • See Starting Kong Securely for more security practices with Kong Gateway
Thank you for your feedback.
Was this page useful?
Too much on your plate? close cta icon
More features, less infrastructure with Kong Konnect. 1M requests per month for free.
Try it for Free
  • Kong
    Powering the API world

    Increase developer productivity, security, and performance at scale with the unified platform for API management, service mesh, and ingress controller.

    • Products
      • Kong Konnect
      • Kong Gateway Enterprise
      • Kong Gateway
      • Kong Mesh
      • Kong Ingress Controller
      • Kong Insomnia
      • Product Updates
      • Get Started
    • Documentation
      • Kong Konnect Docs
      • Kong Gateway Docs
      • Kong Gateway Enterprise Docs
      • Kong Mesh Docs
      • Kong Insomnia Docs
      • Kong Konnect Plugin Hub
    • Open Source
      • Kong Gateway
      • Kuma
      • Insomnia
      • Kong Community
    • Company
      • About Kong
      • Customers
      • Careers
      • Press
      • Events
      • Contact
  • Terms• Privacy• Trust and Compliance
© Kong Inc. 2023