purestorage.flashblade.purefb_s3acc module – Create or delete FlashBlade Object Store accounts
Note
This module is part of the purestorage.flashblade collection (version 1.21.2).
You might already have this collection installed if you are using the ansible package.
It is not included in ansible-core.
To check whether it is installed, run ansible-galaxy collection list.
To install it, use: ansible-galaxy collection install purestorage.flashblade.
You need further requirements to be able to use this module,
see Requirements for details.
To use it in a playbook, specify: purestorage.flashblade.purefb_s3acc.
New in purestorage.flashblade 1.0.0
Synopsis
- Create or delete object store accounts on a Pure Stoage FlashBlade. 
Requirements
The below requirements are needed on the host that executes this module.
- python >= 3.9 
- py-pure-client 
- purity_fb >= 1.12.2 
- netaddr 
- datetime 
- pytz 
- distro 
- pycountry 
- urllib3 
Parameters
| Parameter | Comments | 
|---|---|
| FlashBlade API token for admin privileged user. | |
| If set to true, adding bucket policies that grant public access to a bucket is not allowed. Choices: 
 | |
| If set to true, access to a bucket with a public policy is restricted to only authenticated users within the account that bucket belongs to. Choices: 
 | |
| The value of this field will be used to configure the hard_limit field of newly created buckets associated with this object store account, if the bucket creation does not specify its own value. Choices: 
 | |
| The value of this field will be used to configure the quota_limit field of newly created buckets associated with this object store account, if the bucket creation does not specify its own value. Values can be entered as K, M, T or P If set to ‘’ (empty string), the bucket default is unlimited in size. | |
| Disable insecure certificate warnings Choices: 
 | |
| FlashBlade management IP address or Hostname. | |
| If set to true, the account size, as defined by quota_limit, is used as a hard limit quota. If set to false, a hard limit quota will not be applied to the account, but soft quota alerts will still be sent if the account has a value set for quota_limit. Choices: 
 | |
| The name of object store account | |
| The effective quota limit to be applied against the size of the account in bytes. Values can be entered as K, M, T or P If set to ‘’ (empty string), the account is unlimited in size. | |
| Create or delete object store account Choices: 
 | 
Notes
Note
- This module requires the - purity_fbPython library
- You must set - PUREFB_URLand- PUREFB_APIenvironment variables if fb_url and api_token arguments are not passed to the module directly
Examples
- name: Create object store account foo (with no quotas)
  purestorage.flashblade.purefb_s3acc:
    name: foo
    fb_url: 10.10.10.2
    api_token: e31060a7-21fc-e277-6240-25983c6c4592
- name: Create object store account foo (with quotas)
  purestorage.flashblade.purefb_s3acc:
    name: foo
    quota: 20480000
    hard_limit: true
    default_quota: 1024000
    default_hard_limit: false
    fb_url: 10.10.10.2
    api_token: e31060a7-21fc-e277-6240-25983c6c4592
- name: Delete object store account foo
  purestorage.flashblade.purefb_s3acc:
    name: foo
    state: absent
    fb_url: 10.10.10.2
    api_token: e31060a7-21fc-e277-6240-25983c6c4592
