Manages a Service Catalog Tag Option.
resource "aws_servicecatalog_tag_option" "example" {
key = "nyckel"
value = "värde"
}
The following arguments are required:
key
- (Required) Tag option key.value
- (Required) Tag option value.The following arguments are optional:
active
- (Optional) Whether tag option is active. Default is true
.This resource exports the following attributes in addition to the arguments above:
id
- Identifier (e.g., tag-pjtvagohlyo3m
).owner_id
- AWS account ID of the owner account that created the tag option.create
- (Default 3m
)read
- (Default 10m
)update
- (Default 3m
)delete
- (Default 3m
)In Terraform v1.5.0 and later, use an import
block to import aws_servicecatalog_tag_option
using the tag option ID. For example:
import {
to = aws_servicecatalog_tag_option.example
id = "tag-pjtvagohlyo3m"
}
Using terraform import
, import aws_servicecatalog_tag_option
using the tag option ID. For example:
% terraform import aws_servicecatalog_tag_option.example tag-pjtvagohlyo3m