(compatible with InfluxDB version 0.9+)
salt.states.influxdb_user.
absent
(name, **client_args)¶Ensure that given user is absent.
The name of the user to manage
salt.states.influxdb_user.
present
(name, passwd, admin=False, grants=None, **client_args)¶Ensure that given user is present.
Name of the user to manage
Password of the user
Whether the user should have cluster administration privileges or not.
Optional - Dict of database:privilege items associated with the user. Example:
foo_db: read bar_db: all
Example:
example user present in influxdb:
influxdb_user.present:
- name: example
- passwd: somepassword
- admin: False
- grants:
foo_db: read
bar_db: all
Generated on September 28, 2023 at 04:04:53 UTC.
You are viewing docs for the previous stable release, 3005.3. Switch to docs for the latest stable release, 3006.3, or to a recent doc build from the master branch.
© 2023 VMware, Inc. | Privacy Policy