Skip to content

Instantly share code, notes, and snippets.

@andrew-templeton
Created November 21, 2015 21:44
Show Gist options
  • Save andrew-templeton/1e2516ca6ef069b13687 to your computer and use it in GitHub Desktop.
Save andrew-templeton/1e2516ca6ef069b13687 to your computer and use it in GitHub Desktop.
Proposed CloudFormation custom resource interface for DynamoDB AutoScaler Resource
"MyDynamoAutoScaler": {
"Type": "Custom::DynamoDBAutoScaling",
"Properties": {
"TableName": {"Ref": "MyDynamoTable"},
"CheckInterval": 300,
"ScaleReadsUpAbove": 90,
"IncreaseReadsBy": 50,
"ScaleReadsDownBelow": 30,
"DecreaseReadsBy": 40,
"ScaleReadsUpAbove": 90,
"IncreaseWritesBy": 40,
"ScaleReadsDownBelow": 40,
"DecreaseWritesBy": 70
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment