简介

该组件是 serverless-tencent 组件库中的基础组件之一。通过访问管理 CAM-role 组件,可以快速,方便的创建,配置和管理腾讯云的 CAM 角色

快速开始

通过 CAM-role 组件,对一个 CAM 的角色进行完整的创建,配置,部署和删除等操作。支持命令如下:

1. 安装

通过 npm 安装 serverless

  1. $ npm install -g serverless

2. 创建

本地创建 serverless.yml.env 两个文件

  1. $ touch serverless.yml
  2. $ touch .env # 腾讯云的配置信息

.env 文件中配置腾讯云的 SecretId 和 SecretKey 信息并保存

如果没有腾讯云账号,可以在此注册新账号

如果已有腾讯云账号,可以在API 密钥管理中获取 SecretIdSecretKey.

  1. # .env
  2. TENCENT_SECRET_ID=123
  3. TENCENT_SECRET_KEY=123

3. 配置

在 serverless.yml 中进行如下配置

  1. # serverless.yml
  2. myRole:
  3. component: '@serverless/tencent-cam-role'
  4. inputs:
  5. roleName: QCS_SCFExcuteRole
  6. service:
  7. - scf.qcloud.com
  8. - cos.qcloud.com
  9. policy:
  10. policyName:
  11. - QCloudResourceFullAccess
  12. - QcloudAccessForCDNRole

4. 部署

通过如下命令进行部署,并查看部署过程中的信息

  1. $ sls --debug
  2. DEBUG Resolving the template's static variables.
  3. DEBUG ─ Collecting components from the template.
  4. DEBUG ─ Downloading any NPM components found in the template.
  5. DEBUG ─ Analyzing the template's components dependencies.
  6. DEBUG Creating the template's components graph.
  7. DEBUG ─ Syncing template state.
  8. DEBUG ─ Executing the template's components graph.
  9. DEBUG Syncing role c0hhdv-qt9mh6xj in region ap-guangzhou.
  10. DEBUG Updating policy for role c0hhdv-qt9mh6xj.
  11. DEBUG Saved state for role c0hhdv-qt9mh6xj.
  12. DEBUG Role c0hhdv-qt9mh6xj was successfully deployed to region ap-guangzhou.
  13. DEBUG Deployed role roleId is 4611686018427945536.
  14. myRole:
  15. roleName: QCS_SCFExcuteRole
  16. description: This is tencent-cam-role component.
  17. roleId: 4611686018427945536
  18. service:
  19. - cos.qcloud.com
  20. - scf.qcloud.com
  21. policy:
  22. policyId:
  23. - 16313162
  24. - 2
  25. policyName:
  26. - QCloudResourceFullAccess
  27. - QcloudAccessForCDNRole
  28. 17s myRole done

5. 移除

  1. $ sls remove --debug
  2. DEBUG Flushing template state and removing all components.
  3. DEBUG Removing role c0hhdv-qt9mh6xj from region ap-guangzhou.
  4. DEBUG Role c0hhdv-qt9mh6xj successfully removed from region ap-guangzhou.
  5. 1s myRole done

还支持哪些组件?

可以在 Serverless Components 中查询更多组件的信息。