-
Notifications
You must be signed in to change notification settings - Fork 144
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Ansible Configuration Support #124
Comments
Hi @z0mbix! I never had a use case to support ansible configuration rather than the env vars, but if you have an idea, you can elaborate on it, and I would give it a thought. Thanks! |
I've managed to do this which is working fine: defaultAnsibleEnvVars := map[string]string{
"ANSIBLE_DISPLAY_OK_HOSTS": "false",
"ANSIBLE_DISPLAY_SKIPPED_HOSTS": "false",
"ANSIBLE_FORCE_COLOR": "true",
"ANSIBLE_NOCOWS": "true",
"ANSIBLE_PLAYBOOK_DIR": ansiblePlaybookDir,
"ANSIBLE_PYTHON_INTERPRETER": "auto_silent",
"ANSIBLE_RETRY_FILES_ENABLED": "false",
"ANSIBLE_ROLES_PATH": ansibleRolesPath,
"ANSIBLE_SHOW_CUSTOM_STATS": "true",
}
defaultExecutor.EnvVars = defaultAnsibleEnvVars So it's not a real problem, just thought it may be nicer to handle these with proper types to avoid it being so "stringy" |
HI @z0mbix! I need to refine the idea but the first approach would be:
|
Hi @z0mbix! |
Great news! Very much looking forward to 2.x.x 👏 |
The following guide provides how to use ansible configuration settings. |
Hi, this is a fantastic package and it's working really well for what I need so many thanks for all the hard work and thought on implementing this.
I'm still having to use an
ansible.cfg
to add some configuration. I know I could use env vars to do this, but are there any plans to support ansible configuration with this package?The text was updated successfully, but these errors were encountered: