Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Document continuous backups and auto scaling settings. #4780

Closed
russjones opened this issue Nov 10, 2020 · 0 comments · Fixed by #4978
Closed

Document continuous backups and auto scaling settings. #4780

russjones opened this issue Nov 10, 2020 · 0 comments · Fixed by #4978
Assignees

Comments

@russjones
Copy link
Contributor

russjones commented Nov 10, 2020

These settings will apply to backend and events tables.

teleport:
  storage:
    type: "dynamodb"
    [...]

    # continuous_backups is used to enable continuous backups.
    continuous_backups: [true|false]

    # auto_scaling is used to enable (and define settings for) auto scaling.
    auto_scaling:  [true|false]
    read_min_capacity: int
    read_max_capacity: int
    read_target_value: float
    write_min_capacity: int
    write_max_capacity: int
    write_target_value: float
        {
            "Action": [
                "application-autoscaling:PutScalingPolicy",
                "application-autoscaling:RegisterScalableTarget"
            ],
            "Effect": "Allow",
            "Resource": "*"
        },
        {
            "Action": [
                "iam:CreateServiceLinkedRole"
            ],
            "Condition": {
                "StringEquals": {
                    "iam:AWSServiceName": [
                        "dynamodb.application-autoscaling.amazonaws.com"
                    ]
                }
            },
            "Effect": "Allow",
            "Resource": "*"
        }

For more details see:

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging a pull request may close this issue.

2 participants