"Morpheus" variable is not working

I have an ansible workflow where i am using input option

Its my syntex
"pool_id: “{{ morpheus[‘customOptions’][‘Pool_Selection_Manual_Text’] }}” "

i have created inputs called “Pool_Selection_Manual_Text” in the MD and passed to the ansible playbook but i am getting below error

““The task includes an option with an undefined variable. The error was: {{ morpheus[‘customOptions’][‘Pool_Selection_Manual_Text’] }}: ‘dict object’ has no attribute ‘Pool_Selection_Manual_Text’\n\nThe error appears to be in '/var/opt/morpheus/morpheus-local/repo/git/ae9aa2c0c5ae07d846074aa893b04223/volume-provisioningg.yml””

Are you running this directly from the Operational workflow or are you running this as a catalog item?

I am running from the Operational Workflow

Team , anybody can help here?

what do you see just using morpheus[‘customOptions’] without a defined field name? It’s hard to make recommendation without more details / visualization

I get below error

File “”, line 11
data = {“ldevId”: None, “poolId”: morpheus[‘customOptions’], “byteFormatCapacity”: morpheus[‘customOptions’]
^
SyntaxError: invalid character in identifier

You’ve got special quotes in your input: morpheus[‘customOptions’]. It needs to be: morpheus['customOptions']

as you suggested i ran without defining fieldname and go this error msg