1.0.0 • Published 8 years ago
serverless-endpoint-configuration v1.0.0
serverless-endpoint-configuration
A Serverless plugin to set API Gateway endpoint configuration for your Serverless services.
AWS recently announced regional API endpoints for API Gateway. However, this configuration is not yet supported in CloudFormation. This plugin lets you programmatically set your endpoints with a single command 🎉.
Usage
- Install the plugin in your Serverless service: - $ npm install --save-dev serverless-endpoint-configuration
- Add configuration to your - serverless.yml:- plugins: - serverless-endpoint-configuration custom: endpoint: type: 'REGIONAL' updateOnDeploy: true # Default is true
- Run - sls deployto deploy your application with your configured endpoint!
Configuration
By default, it will update the endpoint configuration after a deploy. If you prefer more granular control, you can set updateOnDeploy: false in your serverless.yml:
custom:
  endpoint:
    type: 'REGIONAL'
    updateOnDeploy: falseThen you can run sls endpoints set to manually update your endpoint configuration.
Limitations
- Updating configuration can take a few minutes. If you try to change back and forth too quickly, it will throw an error.
- I'd like to add a getcommand to check current config, but thegetRestApimethod from the SDK is not returning endpointConfiguration as noted in the docs.
- This plugin will probably become irrelevant when AWS adds endpoint configuration support to CloudFormation. Enjoy it while it lasts!
1.0.0
8 years ago