mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-04-24 11:21:25 -07:00
fix problem with documentation and param definition difference (#40067)
* fix problem with documentation and param definition difference * removed some E324 from ignore.txt * fixed mistake * remove one more E324 * removed function app * fixing append tags * leaving append tags for later
This commit is contained in:
parent
38ab36a625
commit
b20a88c39d
2 changed files with 3 additions and 21 deletions
|
@ -23,7 +23,8 @@ except ImportError:
|
|||
AZURE_COMMON_ARGS = dict(
|
||||
auth_source=dict(
|
||||
type='str',
|
||||
choices=['auto', 'cli', 'env', 'credential_file', 'msi']
|
||||
choices=['auto', 'cli', 'env', 'credential_file', 'msi'],
|
||||
default='auto'
|
||||
),
|
||||
profile=dict(type='str'),
|
||||
subscription_id=dict(type='str', no_log=True),
|
||||
|
@ -32,7 +33,7 @@ AZURE_COMMON_ARGS = dict(
|
|||
tenant=dict(type='str', no_log=True),
|
||||
ad_user=dict(type='str', no_log=True),
|
||||
password=dict(type='str', no_log=True),
|
||||
cloud_environment=dict(type='str'),
|
||||
cloud_environment=dict(type='str', default='AzureCloud'),
|
||||
cert_validation_mode=dict(type='str', choices=['validate', 'ignore']),
|
||||
api_profile=dict(type='str', default='latest')
|
||||
# debug=dict(type='bool', default=False),
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue