Skip to content

Commit

Permalink
meraki_networks_switch_link_aggregations - no id in delete request path
Browse files Browse the repository at this point in the history
#149

ID not mapped in delete method
  • Loading branch information
fmunozmiranda committed Sep 27, 2024
1 parent b9edbf7 commit 556c37a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -347,7 +347,7 @@ func (r *NetworksSwitchLinkAggregationsResource) Delete(ctx context.Context, req
}

vvNetworkID := state.NetworkID.ValueString()
vvLinkAggregationID := state.LinkAggregationID.ValueString()
vvLinkAggregationID := state.ID.ValueString()
_, err := r.client.Switch.DeleteNetworkSwitchLinkAggregation(vvNetworkID, vvLinkAggregationID)
if err != nil {
resp.Diagnostics.AddError(
Expand Down

0 comments on commit 556c37a

Please sign in to comment.