123456789101112131415161718192021222324 |
- ROSTemplateFormatVersion: '2015-09-01'
- Transform: 'Aliyun::Serverless-2018-04-03'
- Resources:
- sms-plat:
- Type: 'Aliyun::Serverless::Service'
- Properties:
- InternetAccess: true
- Description: '短信平台'
- go-sms:
- Type: 'Aliyun::Serverless::Function'
- Properties:
- Handler: main
- Runtime: custom
- CodeUri: './bootstrap.zip'
- MemorySize: 1024
- Timeout: 30
- InitializationTimeout: 30
- CAPort: 8081
- Events:
- http-go-sms:
- Type: HTTP
- Properties:
- AuthType: ANONYMOUS
- Methods: [ 'GET', 'POST', 'PUT', 'DELETE' ]
|