community.network.avi_cloudconnectoruser – Module for setup of CloudConnectorUser Avi RESTful Object¶
Note
This plugin is part of the community.network collection (version 2.1.1).
To install it use: ansible-galaxy collection install community.network
.
To use it in a playbook, specify: community.network.avi_cloudconnectoruser
.
Synopsis¶
This module is used to configure CloudConnectorUser object
more examples at https://github.com/avinetworks/devops
Parameters¶
Notes¶
Note
For more information on using Ansible to manage Avi Network devices see https://www.ansible.com/ansible-avi-networks.
Examples¶
- name: Create a Cloud connector user that is used for integration into cloud platforms
community.network.avi_cloudconnectoruser:
controller: '{{ controller }}'
name: root
password: '{{ password }}'
private_key: |
-----BEGIN RSA PRIVATE KEY-----
-----END RSA PRIVATE KEY-----'
public_key: 'ssh-rsa ...'
tenant_ref: admin
username: '{{ username }}'
Return Values¶
Common return values are documented here, the following are the fields unique to this module:
Key | Returned | Description |
---|---|---|
obj
dictionary
|
success, changed |
CloudConnectorUser (api/cloudconnectoruser) object
|
Authors¶
Gaurav Rastogi (@grastogi23) <grastogi@avinetworks.com>