-set_fact: abcd: "{{ my_list[index] }}" #ok my_list["{{index}}"]: "abcdefg" # does not work my_list[0]: "abcdefg" # does not work my_list.append( "abcdefg") # does not wokr
is there a way to assign a value to my_list ins the index location or to append to the end of the list