Skip to content

Commit

Permalink
Fix Ansible dev version Sanity error in plugin file (#825)
Browse files Browse the repository at this point in the history
* Fix Ansible dev version Sanity error in plugin file

* fix sanity fail
  • Loading branch information
Fred-sun authored Apr 18, 2022
1 parent 2795514 commit c23a0ce
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 7 deletions.
6 changes: 5 additions & 1 deletion plugins/lookup/azure_keyvault_secret.py
Original file line number Diff line number Diff line change
@@ -1,11 +1,15 @@
# Copyright (c) 2022 Hai Cao, <[email protected]>
#
# GNU General Public License v3.0+ (see COPYING or https://www.gnu.org/licenses/gpl-3.0.txt)

from __future__ import (absolute_import, division, print_function)
__metaclass__ = type

DOCUMENTATION = """
lookup: azure_keyvault_secret
author:
- Hai Cao <[email protected]>
version_added: 1.12.0
version_added: '1.12.0'
requirements:
- requests
- azure
Expand Down
12 changes: 6 additions & 6 deletions plugins/modules/azure_rm_rediscache.py
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,9 @@
- Require clients to use a specified TLS version.
type: str
choices:
- 1.0
- 1.1
- 1.2
- "1.0"
- "1.1"
- "1.2"
version_added: "1.10.0"
public_network_access:
description:
Expand All @@ -111,9 +111,9 @@
- The major version of Redis.
type: str
choices:
- 4
- 6
default: 4
- "4"
- "6"
default: "4"
version_added: "1.10.0"
shard_count:
description:
Expand Down
1 change: 1 addition & 0 deletions tests/sanity/ignore-2.14.txt
Original file line number Diff line number Diff line change
Expand Up @@ -319,3 +319,4 @@ plugins/modules/azure_rm_vmbackuppolicy.py validate-modules:parameter-list-no-el
plugins/modules/azure_rm_privatednsrecordset.py validate-modules:invalid-ansiblemodule-schema
tests/utils/shippable/check_matrix.py replace-urlopen
tests/utils/shippable/timing.py shebang
plugins/lookup/azure_keyvault_secret.py validate-modules:invalid-documentation

0 comments on commit c23a0ce

Please sign in to comment.