Skip to content

Latest commit

 

History

History
46 lines (32 loc) · 962 Bytes

File metadata and controls

46 lines (32 loc) · 962 Bytes
page_title subcategory description
opal_tag Resource - terraform-provider-opal
Tag Resource

opal_tag (Resource)

Tag Resource

Example Usage

resource "opal_tag" "my_tag" {
  key   = "api-scope"
  value = "production"
}

Schema

Required

  • key (String) The key of the tag to create. Requires replacement if changed.

Optional

  • value (String) The value of the tag to create. Requires replacement if changed.

Read-Only

  • created_at (String) The date the tag was created.
  • id (String) The ID of the tag.
  • updated_at (String) The date the tag was last updated.
  • user_creator_id (String) The ID of the user that created the tag.

Import

Import is supported using the following syntax:

terraform import opal_tag.my_opal_tag "1b978423-db0a-4037-a4cf-f79c60cb67b3"