Skip to content

Commit

Permalink
fix: module update body request (#80)
Browse files Browse the repository at this point in the history
  • Loading branch information
BenjaminDecreusefond authored Oct 23, 2024
1 parent 8171991 commit 63b3542
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/provider/module_resource.go
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,7 @@ func (r *ModuleResource) Update(ctx context.Context, req resource.UpdateRequest,
bodyRequest := &client.ModuleEntity{
ID: state.ID.ValueString(),
Name: plan.Name.ValueString(),
Description: plan.Name.ValueString(),
Description: plan.Description.ValueString(),
Provider: plan.ProviderName.ValueString(),
Source: plan.Source.ValueString(),
Folder: plan.Folder.ValueString(),
Expand Down

0 comments on commit 63b3542

Please sign in to comment.