W3cubDocs

/Terraform

digitalocean_tag

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.

Example Usage

# 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-16-04-x64"
  name   = "web-1"
  region = "nyc3"
  size   = "512mb"
  tags   = ["${digitalocean_tag.foobar.id}"]
}

Argument Reference

The following arguments are supported:

  • name - (Required) The name of the tag

Attributes Reference

The following attributes are exported:

  • id - The id of the tag
  • name - The name of the tag

Import

Tags can be imported using the name, e.g.

terraform import digitalocean_tag.mytag tagname

© 2018 HashiCorpLicensed under the MPL 2.0 License.
https://www.terraform.io/docs/providers/do/r/tag.html