Created
November 27, 2018 19:09
-
-
Save adrianhall/6bc0227e0c3727b4c3fdfad8c240dfd2 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
custom: | |
# The base name of the API for resource generation - can't include dashes | |
# [a-zA-Z0-9]+ only | |
api: ${self:provider.stage}RestaurantReviews | |
# ES Domain, must match [a-z][a-z0-9\-]+ | |
es_domain: ${self:provider.stage}-restaurant-reviews | |
# The number of instances to launch into the ElasticSearch domain | |
es_instanceCount: 1 | |
# The type of instance to launch into the ElasticSearch domain | |
es_instanceType: "t2.small.elasticsearch" | |
# The size in GB of the EBS volumes that contain the data | |
es_ebsVolumeGB: 20 | |
# The number of read IOPS the DynamoDB table should support. | |
ddb_readIOPS: 5 | |
# The number of write IOPS the DynamoDB table should support. | |
ddb_writeIOPS: 5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment