Passing yaml to tower-cli --source-vars flag

I am attempting to pass this yaml to the tower-cli --source-vars flag:

I answered my own question: don’t use YAML, use JSON. E.g.:

`
tower-cli inventory_source modify -n OlympusInventory.py -i BER1 --source scm --source-vars=“{"INVENTORY_SAFEGUARD": "disabled","INVENTORY_QUERY":"datacenter.name=ber1 AND os=centos","INVENTORY_LIMIT":"0"}” --overwrite true --update-on-launch true --update-cache-timeout 300 --source-project olympus_inventory --source-path ‘OlympusInventory.py’

`

Sorry for the churn, but that should be single-quoted:

tower-cli inventory_source modify -n OlympusInventory.py -i BER1 --source scm --source-vars='{\"INVENTORY_SAFEGUARD\": \"disabled\",\"INVENTORY_QUERY\":\"datacenter.name=ber1 AND os=centos\",\"INVENTORY_LIMIT\":\"0\"}' --overwrite true --update-on-launch true --update-cache-timeout 300 --source-project olympus_inventory --source-path 'OlympusInventory.py'