Skip to content

Commit 6a3b48b

Browse files
committed
fix: rollback param flip on delete private endpoints
1 parent f78867a commit 6a3b48b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

internal/store/private_endpoints.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,7 +127,7 @@ func (s *Store) InterfaceEndpoint(projectID, cloudProvider, endpointServiceID, p
127127
}
128128

129129
// DeleteInterfaceEndpoint encapsulates the logic to manage different cloud providers
130-
func (s *Store) DeleteInterfaceEndpoint(projectID, provider, endpointServiceID, privateEndpointID string) error {
130+
func (s *Store) DeleteInterfaceEndpoint(projectID, provider, privateEndpointID, endpointServiceID string) error {
131131
switch s.service {
132132
case config.CloudService:
133133
_, err := s.client.(*atlas.Client).PrivateEndpoints.DeleteOnePrivateEndpoint(context.Background(), projectID, provider, endpointServiceID, privateEndpointID)

0 commit comments

Comments
 (0)