对象存储 COS 组件是 serverless-tencent 组件库中的基础组件之一。通过对象存储 COS 组件,可以快速且方便的创建、配置和管理腾讯云的 COS 存储桶。
已安装 Node.js(Node.js 版本需不低于 8.6,建议使用 Node.js10.0 及以上版本)
通过 npm 安装 Serverless:
npm install -g serverless
如果之前您已经安装过 Serverless Framework,可以通过下列命令升级到最新版:
npm update -g serverless
本地创建 serverless.yml
文件,在其中进行如下配置:
touch serverless.yml
# serverless.yml
org: orgDemo
app: appDemo
stage: dev
component: cos
name: cosDemo
inputs:
bucket: my-bucket
region: ap-guangzhou
执行以下命令进行部署,返回信息如下:
[root@iZh8dhuyhmexn3Z demo]# sls deploy
serverless ⚡ framework
Action: "deploy" - Stage: "dev" - App: "appDemo" - Instance: "cosDemo"
region: ap-guangzhou
bucket: my-bucket-xxxxxxx
url: http://my-bucket-xxxxxxx.cos.ap-guangzhou.myqcloud.com
Full details: https://serverless.cloud.tencent.com/instances/appDemo%3Adev%3AcosDemo
3s › cosDemo › Success
说明:
如果想要持久授权,请参考 账号配置。
执行sls remove
命令移除部署的存储桶,返回信息如下:
[root@iZh8dhuyhmexn3Z demo]# sls remove
serverless ⚡ framework
Action: "remove" - Stage: "dev" - App: "appDemo" - Instance: "cosDemo"
3s › cosDemo › Success
当前默认支持 CLI 扫描二维码登录,如您希望配置持久的环境变量/密钥信息,也可以本地创建 .env
文件:
touch .env # 腾讯云的配置信息
在 .env
文件中配置腾讯云的 SecretId 和 SecretKey 信息并保存。
# .env
TENCENT_SECRET_ID=123
TENCENT_SECRET_KEY=123
说明:
本页内容是否解决了您的问题?