netapp.storagegrid.na_sg_org_user_s3_key 模块 – 创建 NetApp StorageGRID 用户 S3 密钥。

注意

此模块是 netapp.storagegrid 集合 (版本 21.13.0) 的一部分。

如果您使用的是 ansible 包,则可能已安装此集合。它不包含在 ansible-core 中。要检查它是否已安装,请运行 ansible-galaxy collection list

要安装它,请使用: ansible-galaxy collection install netapp.storagegrid

要在剧本中使用它,请指定: netapp.storagegrid.na_sg_org_user_s3_key

netapp.storagegrid 20.6.0 中的新增功能

概要

  • 在 NetApp StorageGRID 上创建和删除用户 S3 密钥。

参数

参数

注释

access_key

字符串

访问密钥或 S3 凭证对标识符。

删除操作必需。

api_url

字符串 / 必需

StorageGRID 管理节点 REST API 的 URL。

auth_token

字符串 / 必需

API 请求的授权令牌

expires

字符串

密钥过期日期时间字符串。

state

字符串

指定帐户是否存在。

选项

  • "present" ← (默认)

  • "absent"

unique_user_name

字符串 / 必需

拥有 S3 密钥的唯一用户名。

validate_certs

布尔值

是否应验证 https 证书?

选项

  • false

  • true ← (默认)

备注

注意

  • na_sg 为前缀的模块用于管理 NetApp StorageGRID。

示例

- name: create a s3 key
  netapp.storagegrid.na_sg_org_user_s3_key:
    api_url: "https://<storagegrid-endpoint-url>"
    auth_token: "storagegrid-auth-token"
    validate_certs: false
    state: present
    unique_user_name: user/ansibleuser1

返回值

常用返回值已在 此处 记录,以下是此模块特有的字段

描述

resp

字典

返回有关用户的 S3 访问密钥的信息。

返回:始终

示例: {"accountId": 12345678901234567000, "displayName": "****************AB12", "expires": "2020-09-04T00:00:00.000Z", "id": "abcABC_01234-0123456789abcABCabc0123456789==", "userURN": "urn:sgws:identity::12345678901234567000:root", "userUUID": "00000000-0000-0000-0000-000000000000"}

作者

  • NetApp Ansible 团队 (@joshedmonds)