Skip to content

Instantly share code, notes, and snippets.

@Akasurde
Last active July 8, 2022 09:44
Show Gist options
  • Save Akasurde/8592505a74ebe1fbc49dde9449b123c6 to your computer and use it in GitHub Desktop.
Save Akasurde/8592505a74ebe1fbc49dde9449b123c6 to your computer and use it in GitHub Desktop.
- name: Remove nth element from the list by value
debug:
msg: |
{% set _ = my_list.remove(value) %}
{{ my_list }}
vars:
my_list: [1, 2, 3, 4, 5, 6]
value: 2
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment