How to remove Global Accelerator Endpoint from Group programmatically?

0

I can add an endpoint to a group using aws globalaccelerator update-endpoint-group, but how do I remove an endpoint from an endpoint group?? Closest thing I can find is remove-custom-routing-endpoints but I'm using a Standard GA, not an custom one.

1 réponse
1
Réponse acceptée

The update-endpoint-group or UpdateEndpointGroup API can be used to both add or remove Endpoints. The contents of the property --endpoint-configurations is a list which must contain the end state desired endpoints ie if you wanted to add one endpoint you need to include the current endpoints and the new endpoint, if you want to remove an endpoint you supply an --endpoint-configurations list without the endpoint you want to remove and this will then remove the endpoint from the group

You might want to consider using cloudformation or other IaC tool as you might find easier to manage adding/removing operations

AWS
EXPERT
Peter_G
répondu il y a 2 ans
  • Thank you for this most complete and excellent answer! To delete all endpoints in a group, calling update-endpoint-group with an empty --endpoint-configurations clears all entries -- exactly what I was looking for!

    It would be nice if this removal process was documented in the cli/api docs, even if just as an example.

Vous n'êtes pas connecté. Se connecter pour publier une réponse.

Une bonne réponse répond clairement à la question, contient des commentaires constructifs et encourage le développement professionnel de la personne qui pose la question.

Instructions pour répondre aux questions