Skip to content

Commit

Permalink
Fix: ASA not updating tags (#64)
Browse files Browse the repository at this point in the history
  • Loading branch information
weilueluo authored Sep 28, 2023
1 parent d173294 commit 296f932
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion provider/internal/device/asa/resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -287,7 +287,7 @@ func (r *AsaDeviceResource) Update(ctx context.Context, req resource.UpdateReque
return
}

tagsInp := tags.New(util.TFStringListToGoStringList(stateData.Labels)...)
tagsInp := tags.New(util.TFStringListToGoStringList(planData.Labels)...)

updateInp := asa.NewUpdateInput(
stateData.ID.ValueString(),
Expand Down

0 comments on commit 296f932

Please sign in to comment.