Skip to content

Commit

Permalink
feat: resolved linting issue
Browse files Browse the repository at this point in the history
  • Loading branch information
akhilmhdh committed Dec 9, 2024
1 parent 1a15207 commit 86813a6
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions internal/provider/resource/integration_aws_parameter_store.go
Original file line number Diff line number Diff line change
Expand Up @@ -422,6 +422,13 @@ func (r *IntegrationAWSParameterStoreResource) Update(ctx context.Context, req r
}

_, err = r.client.UpdateIntegrationAuth(updateIntegrationAuthRequest)
if err != nil {
resp.Diagnostics.AddError(
"Error updating integration auth",
err.Error(),
)
return
}

// Convert metadata to map[string]interface{} if needed
metadataMap := map[string]interface{}{}
Expand Down

0 comments on commit 86813a6

Please sign in to comment.