package
0.0.0-20250306163500-5f3bb2705e1f
Repository: https://github.com/versoriumx/teleport.git
Documentation: pkg.go.dev

# README

DynamoDB backend implementation for Teleport.

Introduction

This package enables Teleport auth server to store secrets in DynamoDB on AWS.

WARNING: Using DynamoDB involves recurring charge from AWS.

The table created by the backend will provision 5/5 R/W capacity. It should be covered by the free tier.

Running tests

The DynamodDB tests are not run by default. To run them locally, try:

go test -tags dynamodb -v  ./lib/backend/dynamo

NOTE: you will need to provide a AWS credentials & a default region (e.g. in your ~/.aws/credentials & ~/.aws/config files, or via environment vars) for the tests to work.

Quick Start

Add this storage configuration in teleport section of the config file (by default it's /etc/teleport.yaml):

teleport:
  storage:
    type: dynamodb
    region: eu-west-1
    table_name: teleport.state
    access_key: XXXXXXXXXXXXXXXXXXXXX
    secret_key: YYYYYYYYYYYYYYYYYYYYY

Replace region and table_name with your own settings. Teleport will create the table automatically.

AWS IAM Role

You can use IAM role instead of hard coded access and secret key (IAM role is recommended). You must apply correct policy in order to the auth to create/get/update K/V in DynamoDB.

Example of a typical policy (change region and account ID):

{
    "Version": "2012-10-17",
    "Statement": [
        {
            "Sid": "AllAPIActionsOnTeleportAuth",
            "Effect": "Allow",
            "Action": "dynamodb:*",
            "Resource": "arn:aws:dynamodb:eu-west-1:123456789012:table/prod.teleport.auth"
        }
    ]
}

Get Help

This backend has been contributed by https://github.com/apestel

# Functions

GetIndexID returns the resourceID of an index, based on the table & index name.
GetName is a part of backend API and it returns DynamoDB backend type as it appears in `storage/type` section of Teleport YAML.
GetTableID returns the resourceID of a table based on its table name.
New returns new instance of DynamoDB backend.
SetAutoScaling enables auto-scaling for the specified table with given configuration.
SetContinuousBackups enables continuous backups.
No description provided by the author
No description provided by the author

# Constants

BackendName is the name of this backend.
DefaultReadCapacityUnits specifies default value for read capacity units.
DefaultWriteCapacityUnits specifies default value for write capacity units.

# Structs

AutoScalingParams defines auto scaling parameters for DynamoDB.
Backend is a DynamoDB-backed key value backend implementation.
Config structure represents DynamoDB configuration as appears in `storage` section of Teleport YAML.