Skip to content

Commit 2b53e50

Browse files
committed
Revert "Attempt to fix hashicorp#11752. As noted [here by @chungath](hashicorp#11752 (comment)), tags may not be set when the resource is new, since there's no value for arn yet"
This reverts commit 482a86e.
1 parent 8729b22 commit 2b53e50

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/service/neptune/cluster.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -699,7 +699,7 @@ func resourceClusterUpdate(d *schema.ResourceData, meta interface{}) error {
699699
}
700700
}
701701

702-
if !d.IsNewResource() && d.HasChange("tags_all") {
702+
if d.HasChange("tags_all") {
703703
o, n := d.GetChange("tags_all")
704704

705705
if err := UpdateTags(conn, d.Get("arn").(string), o, n); err != nil {

0 commit comments

Comments
 (0)