Jason Swett
Jason Swett

Reputation: 45134

How can I tell if my ansible.cfg is working?

I have an ansible.cfg file. Ansible isn't behaving as expected for me, but I don't know if that's because my configuration isn't working or because my ansible.cfg file isn't even getting picked up at all.

How can I verify whether my ansible.cfg is working?

Upvotes: 1

Views: 554

Answers (1)

Vladimir Botka
Vladimir Botka

Reputation: 68144

Q: "I don't know if my configuration isn't working or my ansible.cfg file isn't even getting picked up at all."

A: Run the command

shell> ansible-config dump --only-changed

This will "Only show configurations that have changed from the default" and will also reveal the source of the change either it's a configuration file or an environment variable.

For details see Configuration settings.

Upvotes: 3

Related Questions