Server IP : 85.214.239.14 / Your IP : 3.147.78.249 Web Server : Apache/2.4.62 (Debian) System : Linux h2886529.stratoserver.net 4.9.0 #1 SMP Tue Jan 9 19:45:01 MSK 2024 x86_64 User : www-data ( 33) PHP Version : 7.4.18 Disable Function : pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_get_handler,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,pcntl_async_signals,pcntl_unshare, MySQL : OFF | cURL : OFF | WGET : ON | Perl : ON | Python : ON | Sudo : ON | Pkexec : OFF Directory : /lib/python3/dist-packages/ansible_collections/community/general/plugins/doc_fragments/ |
Upload File : |
# -*- coding: utf-8 -*- # Copyright (c) 2018, Huawei Inc. # GNU General Public License v3.0+ (see LICENSES/GPL-3.0-or-later.txt or https://www.gnu.org/licenses/gpl-3.0.txt) # SPDX-License-Identifier: GPL-3.0-or-later from __future__ import (absolute_import, division, print_function) __metaclass__ = type class ModuleDocFragment(object): # HWC doc fragment. DOCUMENTATION = ''' options: identity_endpoint: description: - The Identity authentication URL. type: str required: true user: description: - The user name to login with (currently only user names are supported, and not user IDs). type: str required: true password: description: - The password to login with. type: str required: true domain: description: - The name of the Domain to scope to (Identity v3). (currently only domain names are supported, and not domain IDs). type: str required: true project: description: - The name of the Tenant (Identity v2) or Project (Identity v3). (currently only project names are supported, and not project IDs). type: str required: true region: description: - The region to which the project belongs. type: str id: description: - The id of resource to be managed. type: str notes: - For authentication, you can set identity_endpoint using the C(ANSIBLE_HWC_IDENTITY_ENDPOINT) env variable. - For authentication, you can set user using the C(ANSIBLE_HWC_USER) env variable. - For authentication, you can set password using the C(ANSIBLE_HWC_PASSWORD) env variable. - For authentication, you can set domain using the C(ANSIBLE_HWC_DOMAIN) env variable. - For authentication, you can set project using the C(ANSIBLE_HWC_PROJECT) env variable. - For authentication, you can set region using the C(ANSIBLE_HWC_REGION) env variable. - Environment variables values will only be used if the playbook values are not set. '''