mirror of
https://github.com/ansible-collections/community.general.git
synced 2025-10-01 22:13:21 -07:00
Add version_added for all new features (#214)
* Add version_added: 1.0.0 for all new features added before pre-ansible-base. * Add version_added: 1.0.0 for all new features. * Next release will be 0.2.0 * Fix error. * Remove unnecessary warnings.
This commit is contained in:
parent
c081bb6c9c
commit
f9589d78a8
102 changed files with 220 additions and 10 deletions
|
@ -9,6 +9,7 @@ __metaclass__ = type
|
|||
DOCUMENTATION = '''
|
||||
author:
|
||||
- Eric Belhomme <ebelhomme@fr.scc.com>
|
||||
version_added: '0.2.0'
|
||||
lookup: etcd3
|
||||
short_description: Get key values from etcd3 server
|
||||
description:
|
||||
|
|
|
@ -42,12 +42,14 @@ DOCUMENTATION = """
|
|||
ini:
|
||||
- section: lookup_hashi_vault
|
||||
key: token_path
|
||||
version_added: '0.2.0'
|
||||
token_file:
|
||||
description: If no token is specified, will try to read the token from this file in C(token_path).
|
||||
ini:
|
||||
- section: lookup_hashi_vault
|
||||
key: token_file
|
||||
default: '.vault-token'
|
||||
version_added: '0.2.0'
|
||||
url:
|
||||
description: URL to vault service.
|
||||
env:
|
||||
|
@ -55,6 +57,7 @@ DOCUMENTATION = """
|
|||
ini:
|
||||
- section: lookup_hashi_vault
|
||||
key: url
|
||||
version_added: '0.2.0'
|
||||
default: 'http://127.0.0.1:8200'
|
||||
username:
|
||||
description: Authentication user name.
|
||||
|
@ -67,6 +70,7 @@ DOCUMENTATION = """
|
|||
ini:
|
||||
- section: lookup_hashi_vault
|
||||
key: role_id
|
||||
version_added: '0.2.0'
|
||||
secret_id:
|
||||
description: Secret id for a vault AppRole auth.
|
||||
env:
|
||||
|
@ -81,6 +85,7 @@ DOCUMENTATION = """
|
|||
ini:
|
||||
- section: lookup_hashi_vault
|
||||
key: auth_method
|
||||
version_added: '0.2.0'
|
||||
choices:
|
||||
- token
|
||||
- userpass
|
||||
|
@ -100,6 +105,7 @@ DOCUMENTATION = """
|
|||
- raw
|
||||
default: dict
|
||||
aliases: [ as ]
|
||||
version_added: '0.2.0'
|
||||
mount_point:
|
||||
description: Vault mount point, only required if you have a custom mount point.
|
||||
ca_cert:
|
||||
|
@ -118,6 +124,7 @@ DOCUMENTATION = """
|
|||
env:
|
||||
- name: AWS_DEFAULT_PROFILE
|
||||
- name: AWS_PROFILE
|
||||
version_added: '0.2.0'
|
||||
aws_access_key:
|
||||
description: The AWS access key to use.
|
||||
type: str
|
||||
|
@ -126,6 +133,7 @@ DOCUMENTATION = """
|
|||
- name: EC2_ACCESS_KEY
|
||||
- name: AWS_ACCESS_KEY
|
||||
- name: AWS_ACCESS_KEY_ID
|
||||
version_added: '0.2.0'
|
||||
aws_secret_key:
|
||||
description: The AWS secret key that corresponds to the access key.
|
||||
type: str
|
||||
|
@ -134,6 +142,7 @@ DOCUMENTATION = """
|
|||
- name: EC2_SECRET_KEY
|
||||
- name: AWS_SECRET_KEY
|
||||
- name: AWS_SECRET_ACCESS_KEY
|
||||
version_added: '0.2.0'
|
||||
aws_security_token:
|
||||
description: The AWS security token if using temporary access and secret keys.
|
||||
type: str
|
||||
|
@ -141,12 +150,14 @@ DOCUMENTATION = """
|
|||
- name: EC2_SECURITY_TOKEN
|
||||
- name: AWS_SESSION_TOKEN
|
||||
- name: AWS_SECURITY_TOKEN
|
||||
version_added: '0.2.0'
|
||||
region:
|
||||
description: The AWS region for which to create the connection.
|
||||
type: str
|
||||
env:
|
||||
- name: EC2_REGION
|
||||
- name: AWS_REGION
|
||||
version_added: '0.2.0'
|
||||
"""
|
||||
|
||||
EXAMPLES = """
|
||||
|
|
|
@ -8,6 +8,7 @@ DOCUMENTATION = '''
|
|||
lookup: lmdb_kv
|
||||
author:
|
||||
- Jan-Piet Mens (@jpmens)
|
||||
version_added: '0.2.0'
|
||||
short_description: fetch data from LMDB
|
||||
description:
|
||||
- This lookup returns a list of results from an LMDB DB corresponding to a list of items given to it
|
||||
|
|
|
@ -34,6 +34,7 @@ DOCUMENTATION = """
|
|||
lookup: sops
|
||||
author: Edoardo Tenani (@endorama) <e.tenani@arduino.cc>
|
||||
short_description: Read sops encrypted file contents
|
||||
version_added: '0.2.0'
|
||||
description:
|
||||
- This lookup returns the contents from a file on the Ansible controller's file system.
|
||||
- This lookup requires the C(sops) executable to be available in the controller PATH.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue