Updating list of dictionary values from another list

Hi all,
I have a list of dictionaries where I need to update a value sequentially from another list.
1st dictionary:
Xyz:
  1:
    Name: abc
    State:
  2:
    Name: cdf
    State:

Now I have a list as below:
- ghi
- uvw
How can I place the first value in list that is ghi to the dictionary..also ghi should go to first key state value and uvw should go to 2nd key state value.

I need this to be working as dynamically and not static as mentioned.
I tried with_indexed_items but none worked.
Please help me in resolving this issue.