New in version 1.6.
- python >= 2.6
- dopy
parameter | required | default | choices | comments |
---|---|---|---|---|
api_key |
no | DigitalOcean api key. | ||
client_id |
no | DigitalOcean manager id. | ||
id |
no | Numeric, the SSH key id you want to operate on. | ||
name |
no | String, this is the name of an SSH key to create or destroy. | ||
ssh_pub_key |
no | The public SSH key you want to add to your account. | ||
state |
no | present |
|
Indicate desired state of the target. |
# Ensure a SSH key is present # If a key matches this name, will return the ssh key id and changed = False # If no existing key matches this name, a new key is created, the ssh key id is returned and changed = False - digital_ocean_sshkey: state: present name: my_ssh_key ssh_pub_key: 'ssh-rsa AAAA...' client_id: XXX api_key: XXX
Note
This module is flagged as preview which means that it is not guaranteed to have a backwards compatible interface.
This module is community maintained without core committer oversight.
For more information on what this means please read Module Support
For help in developing on modules, should you be so inclined, please read Community Information & Contributing, Helping Testing PRs and Developing Modules.