You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
List of environment variables that can be used to set this option.
82
+
Each entry includes a ``name`` field specifying the environment variable name.
83
+
The name should be in uppercase and should be prefixed with the collection name.
84
+
Multiple environment variables can be listed for the same option.
85
+
The last set environment variable in the list takes precedence if multiple are set.
86
+
This is commonly used for plugins (especially inventory plugins) to allow configuration through environment variables.
87
+
Examples: ``VMWARE_PORT``, ``GRAFANA_PASSWORD``
88
+
89
+
90
+
**ini**
91
+
List of configuration file settings that can be used to set this option.
92
+
Each entry includes a ``section`` field for the configuration file section and a ``key`` field for the configuration key. Both should be in lowercase and should be prefixed with the collection name.
93
+
Multiple configuration settings can be listed for the same option.
94
+
The last set configuration setting in the list takes precedence if multiple are set.
95
+
This allows plugins to be configured with ansible.cfg.
96
+
Example: ``grafana_password``
97
+
98
+
99
+
**vars**
100
+
List of Ansible variables that can be used to set this option.
101
+
Each entry includes a ``name`` field specifying the variable name.
102
+
The name should be in lowercase and should be prefixed with the collection name.
103
+
Multiple variables can be listed for the same option.
104
+
The last set variable in the list takes precedence if multiple are set.
0 commit comments