Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix Ansible dev version Sanity error in plugin file #825

Merged
merged 2 commits into from
Apr 18, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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, <t-haicao@microsoft.com>
#
# 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 <t-haicao@microsoft.com>
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