diff options
Diffstat (limited to 'ansible_collections/community/general/plugins/doc_fragments')
-rw-r--r-- | ansible_collections/community/general/plugins/doc_fragments/django.py | 9 | ||||
-rw-r--r-- | ansible_collections/community/general/plugins/doc_fragments/proxmox.py | 7 |
2 files changed, 16 insertions, 0 deletions
diff --git a/ansible_collections/community/general/plugins/doc_fragments/django.py b/ansible_collections/community/general/plugins/doc_fragments/django.py index d92799937..f89ec9144 100644 --- a/ansible_collections/community/general/plugins/doc_fragments/django.py +++ b/ansible_collections/community/general/plugins/doc_fragments/django.py @@ -51,3 +51,12 @@ seealso: Please make sure that you select the right version of Django in the version selector on that page. link: https://docs.djangoproject.com/en/5.0/ref/django-admin/ ''' + + DATABASE = r''' +options: + database: + description: + - Specify the database to be used. + type: str + default: default +''' diff --git a/ansible_collections/community/general/plugins/doc_fragments/proxmox.py b/ansible_collections/community/general/plugins/doc_fragments/proxmox.py index cb533fefa..239dba06d 100644 --- a/ansible_collections/community/general/plugins/doc_fragments/proxmox.py +++ b/ansible_collections/community/general/plugins/doc_fragments/proxmox.py @@ -16,6 +16,13 @@ options: - Specify the target host of the Proxmox VE cluster. type: str required: true + api_port: + description: + - Specify the target port of the Proxmox VE cluster. + - Uses the E(PROXMOX_PORT) environment variable if not specified. + type: int + required: false + version_added: 9.1.0 api_user: description: - Specify the user to authenticate with. |