You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In Terraform v1.5.0 and later, use an [`import` block](https://developer.hashicorp.com/terraform/language/import) to import Lake Formation LF Tag Expression using the `catalog_id:name`. For example:
56
+
In Terraform v1.5.0 and later, use an [`import` block](https://developer.hashicorp.com/terraform/language/import) to import Lake Formation LF Tag Expression using the `name,catalog_id`. For example:
58
57
59
58
```terraform
60
59
import {
61
60
to = aws_lakeformation_lf_tag_expression.example
62
-
id = "123456789012:example-tag-expression"
61
+
id = "example-tag-expression,123456789012"
63
62
}
64
63
```
65
64
66
-
Using `terraform import`, import Lake Formation LF Tag Expression using the `catalog_id:name`. For example:
65
+
Using `terraform import`, import Lake Formation LF Tag Expression using the `name,catalog_id`. For example:
0 commit comments