Provides a DigitalOcean Tag resource. A Tag is a label that can be applied to a Droplet resource in order to better organize or facilitate the lookups and actions on it. Tags created with this resource can be referenced in your Droplet configuration via their ID or name.
# Create a new tag
resource "digitalocean_tag" "foobar" {
name = "foobar"
}
# Create a new Droplet in nyc3 with the foobar tag
resource "digitalocean_droplet" "web" {
image = "ubuntu-18-04-x64"
name = "web-1"
region = "nyc3"
size = "s-1vcpu-1gb"
tags = [digitalocean_tag.foobar.id]
}
The following arguments are supported:
name
- (Required) The name of the tagThe following attributes are exported:
id
- The id of the tagname
- The name of the tagtotal_resource_count
- A count of the total number of resources that the tag is applied to.droplets_count
- A count of the Droplets the tag is applied to.images_count
- A count of the images that the tag is applied to.volumes_count
- A count of the volumes that the tag is applied to.volume_snapshots_count
- A count of the volume snapshots that the tag is applied to.databases_count
- A count of the database clusters that the tag is applied to.Tags can be imported using the name
, e.g.
terraform import digitalocean_tag.mytag tagname