1
0
Fork 0
mirror of https://github.com/ansible-collections/community.general.git synced 2024-09-14 20:13:21 +02:00

allow using env for foreman options (#52693)

This commit is contained in:
Alan Rominger 2019-03-06 16:50:32 -05:00 committed by Brian Coca
parent 059dc51f63
commit 00ba4525e3

View file

@ -25,12 +25,21 @@ DOCUMENTATION = '''
url:
description: url to foreman
default: 'http://localhost:3000'
env:
- name: FOREMAN_SERVER
version_added: "2.8"
user:
description: foreman authentication user
required: True
env:
- name: FOREMAN_USER
version_added: "2.8"
password:
description: foreman authentication password
required: True
env:
- name: FOREMAN_PASSWORD
version_added: "2.8"
validate_certs:
description: verify SSL certificate if using https
type: boolean