123456789101112131415161718192021222324 |
- ROSTemplateFormatVersion: '2015-09-01'
- Transform: 'Aliyun::Serverless-2018-04-03'
- Resources:
- shigongli:
- Type: 'Aliyun::Serverless::Service'
- Properties:
- InternetAccess: true
- Description: '十公里'
- shigongli-fn:
- Type: 'Aliyun::Serverless::Function'
- Properties:
- Handler: com.yunzhi.shigongli.SpringApplication::main
- Runtime: custom
- CodeUri: 'oss://yz-serverless/shigongli/shigongli-3.0.4.zip'
- MemorySize: 1024
- Timeout: 30
- InitializationTimeout: 30
- CAPort: 8822
- Events:
- http-shigongli:
- Type: HTTP
- Properties:
- AuthType: ANONYMOUS
- Methods: [ 'GET', 'POST', 'PUT', 'DELETE' ]
|