community.digitalocean.digital_ocean_tag module – Create and remove tag(s) to DigitalOcean resource.
Note
This module is part of the community.digitalocean collection (version 1.27.0).
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 community.digitalocean
.
You need further requirements to be able to use this module,
see Requirements for details.
To use it in a playbook, specify: community.digitalocean.digital_ocean_tag
.
Synopsis
Create and remove tag(s) to DigitalOcean resource.
Requirements
The below requirements are needed on the host that executes this module.
python >= 2.6
Parameters
Parameter |
Comments |
---|---|
DigitalOcean API base url. Default: |
|
The name of the tag. The supported characters for names include alphanumeric characters, dashes, and underscores. |
|
DigitalOcean OAuth token. There are several other environment variables which can be used to provide this value. i.e., - |
|
The ID of the resource to operate on. The data type of resource_id is changed from integer to string since Ansible 2.5. |
|
The type of resource to operate on. Currently, only tagging of droplets is supported. Choices:
|
|
Whether the tag should be present or absent on the resource. Choices:
|
|
The timeout in seconds used for polling DigitalOcean’s API. Default: |
|
If set to This should only set to Choices:
|
Notes
Note
Two environment variables can be used, DO_API_KEY and DO_API_TOKEN. They both refer to the v2 token.
As of Ansible 2.0, Version 2 of the DigitalOcean API is used.
Examples
- name: Create a tag
community.digitalocean.digital_ocean_tag:
name: production
state: present
- name: Tag a resource; creating the tag if it does not exist
community.digitalocean.digital_ocean_tag:
name: "{{ item }}"
resource_id: "73333005"
state: present
loop:
- staging
- dbserver
- name: Untag a resource
community.digitalocean.digital_ocean_tag:
name: staging
resource_id: "73333005"
state: absent
# Deleting a tag also untags all the resources that have previously been
# tagged with it
- name: Remove a tag
community.digitalocean.digital_ocean_tag:
name: dbserver
state: absent
Return Values
Common return values are documented here, the following are the fields unique to this module:
Key |
Description |
---|---|
a DigitalOcean Tag resource Returned: success and no resource constraint Sample: |