Skip to content

Commit

Permalink
No-op change to trigger CI
Browse files Browse the repository at this point in the history
  • Loading branch information
t0yv0 committed Oct 28, 2024
1 parent 6da53e0 commit f283771
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion provider/resources.go
Original file line number Diff line number Diff line change
Expand Up @@ -5867,7 +5867,9 @@ func setupComputedIDs(prov *tfbridge.ProviderInfo) {
prov.Resources["aws_iam_user_policies_exclusive"].ComputeID = func(ctx context.Context, state resource.PropertyMap) (resource.ID, error) {
return attr(state, "userName"), nil
}
prov.Resources["aws_backup_restore_testing_plan"].ComputeID = func(ctx context.Context, state resource.PropertyMap) (resource.ID, error) {
prov.Resources["aws_backup_restore_testing_plan"].ComputeID = func(
ctx context.Context, state resource.PropertyMap,
) (resource.ID, error) {
return attr(state, "name"), nil
}
prov.Resources["aws_backup_restore_testing_selection"].ComputeID = func(
Expand Down

0 comments on commit f283771

Please sign in to comment.