diff options
author | Abhijeet Kasurde <akasurde@redhat.com> | 2020-08-21 18:17:18 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-08-21 18:17:18 +0200 |
commit | 3f3bcbf05e46db08a0f5f88ec1eb4c72b82d9fd5 (patch) | |
tree | a1eef08d5977d61716650b31470df8bcc806faf6 /examples | |
parent | Docs: ansible_host can contain FQDN (#71186) (diff) | |
download | ansible-3f3bcbf05e46db08a0f5f88ec1eb4c72b82d9fd5.tar.xz ansible-3f3bcbf05e46db08a0f5f88ec1eb4c72b82d9fd5.zip |
galaxy: Add examples for galaxy section in ansible.cfg (#70931)
Add example section for galaxy section in ansible.cfg
Fixes: #68402
Signed-off-by: Abhijeet Kasurde <akasurde@redhat.com>
Diffstat (limited to 'examples')
-rw-r--r-- | examples/ansible.cfg | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/examples/ansible.cfg b/examples/ansible.cfg index a3c58008bc..ae5cc64afc 100644 --- a/examples/ansible.cfg +++ b/examples/ansible.cfg @@ -492,3 +492,34 @@ # Set how many context lines to show in diff #context = 3 + +[galaxy] +# Controls whether the display wheel is shown or not +#display_progress= + +# Validate TLS certificates for Galaxy server +#ignore_certs = False + +# Role or collection skeleton directory to use as a template for +# the init action in ansible-galaxy command +#role_skeleton= + +# Patterns of files to ignore inside a Galaxy role or collection +# skeleton directory +#role_skeleton_ignore="^.git$", "^.*/.git_keep$" + +# Galaxy Server URL +#server=https://galaxy.ansible.com + +# A list of Galaxy servers to use when installing a collection. +#server_list=automation_hub, release_galaxy + +# Server specific details which are mentioned in server_list +#[galaxy_server.automation_hub] +#url=https://cloud.redhat.com/api/automation-hub/ +#auth_url=https://sso.redhat.com/auth/realms/redhat-external/protocol/openid-connect/token +#token=my_ah_token +# +#[galaxy_server.release_galaxy] +#url=https://galaxy.ansible.com/ +#token=my_token |