简介

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

快速开始

通过 CAM-policy 组件,对一个 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. myPolicy:
  3. component: '@serverless/tencent-cam-policy'
  4. inputs:
  5. name: my-policy
  6. description: A policy created by Serverless Components
  7. policy:
  8. statement:
  9. - effect: allow
  10. action:
  11. - cos:GetService
  12. resource: '*'

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. myPolicy:
  10. id: 27710257
  11. 7s myPolicy done

5. 移除

  1. $ sls remove --debug
  2. DEBUG Flushing template state and removing all components.
  3. 1s myPolicy done

还支持哪些组件?

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