操作场景
对象存储 COS 组件是 serverless-tencent 组件库中的基础组件之一。通过对象存储 COS 组件,可以快速且方便的创建、配置和管理腾讯云的 COS 存储桶。
前提条件
已安装 Node.js(Node.js 版本需不低于 8.6,建议使用 Node.js10.0 及以上版本) 操作步骤
安装
通过 npm 安装 Serverless:
npm install -g serverless
如果之前您已经安装过 Serverless Framework,可以通过下列命令升级到最新版:
配置
本地创建 serverless.yml
文件,在其中进行如下配置:
org: orgDemo
app: appDemo
stage: dev
component: cos
name: cosDemo
inputs:
bucket: my-bucket
region: ap-guangzhou
部署
执行以下命令进行部署,返回信息如下:
[root@iZh8dhuyhmexn3Z demo]
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]
serverless ⚡ framework
Action: "remove" - Stage: "dev" - App: "appDemo" - Instance: "cosDemo"
3s › cosDemo › Success
账号配置(可选)
当前默认支持 CLI 扫描二维码登录,如您希望配置持久的环境变量/密钥信息,也可以本地创建 .env
文件:
在 .env
文件中配置腾讯云的 SecretId 和 SecretKey 信息并保存。
TENCENT_SECRET_ID=123
TENCENT_SECRET_KEY=123
说明:
如果已有腾讯云账号,可以在 API 密钥管理 中获取 SecretId 和 SecretKey。
本页内容是否解决了您的问题?