forked from ansible-collections/amazon.aws
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update plugin docs to explicitly list python, boto3 and botocore vers…
…ion requirements in line with collection requirements (ansible-collections#819) Update plugin docs to explicitly list python, boto3 and botocore version requirements SUMMARY Update plugin docs to explicitly list python, boto3 and botocore version requirements in line with collection requirements. ISSUE TYPE Docs Pull Request COMPONENT NAME plugins/inventory/aws_ec2.py plugins/inventory/aws_rds.py plugins/lookup/aws_account_attribute.py plugins/lookup/aws_secret.py plugins/lookup/aws_ssm.py ADDITIONAL INFORMATION This is in line with the collection requirements, just trying to make it easier to find. Reviewed-by: Alina Buzachis <None>
- Loading branch information
Showing
6 changed files
with
30 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
# Copyright: (c) 2022, Ansible Project | ||
# 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 | ||
|
||
|
||
class ModuleDocFragment(object): | ||
|
||
# Minimum requirements for the collection | ||
DOCUMENTATION = r''' | ||
options: {} | ||
requirements: | ||
- python >= 3.6 | ||
- boto3 >= 1.15.0 | ||
- botocore >= 1.18.0 | ||
''' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,12 +6,9 @@ | |
DOCUMENTATION = ''' | ||
lookup: aws_account_attribute | ||
author: | ||
- Sloane Hertel <[email protected]> | ||
requirements: | ||
- python >= 3.6 | ||
- boto3 | ||
- botocore >= 1.18.0 | ||
- Sloane Hertel (@s-hertel) <[email protected]> | ||
extends_documentation_fragment: | ||
- amazon.aws.aws_boto3 | ||
- amazon.aws.aws_credentials | ||
- amazon.aws.aws_region | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,12 +7,9 @@ | |
DOCUMENTATION = r''' | ||
lookup: aws_secret | ||
author: | ||
- Aaron Smith <[email protected]> | ||
requirements: | ||
- python >= 3.6 | ||
- boto3 | ||
- botocore >= 1.18.0 | ||
- Aaron Smith (!UNKNOWN) <[email protected]> | ||
extends_documentation_fragment: | ||
- amazon.aws.aws_boto3 | ||
- amazon.aws.aws_credentials | ||
- amazon.aws.aws_region | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,13 +10,9 @@ | |
DOCUMENTATION = ''' | ||
lookup: aws_ssm | ||
author: | ||
- Bill Wang <ozbillwang(at)gmail.com> | ||
- Marat Bakeev <hawara(at)gmail.com> | ||
- Michael De La Rue <[email protected]> | ||
requirements: | ||
- python >= 3.6 | ||
- boto3 | ||
- botocore >= 1.18.0 | ||
- Bill Wang (!UNKNOWN) <ozbillwang(at)gmail.com> | ||
- Marat Bakeev (!UNKNOWN) <hawara(at)gmail.com> | ||
- Michael De La Rue (!UNKNOWN) <[email protected]> | ||
short_description: Get the value for a SSM parameter or all parameters under a path. | ||
description: | ||
- Get the value for an Amazon Simple Systems Manager parameter or a hierarchy of parameters. | ||
|
@@ -74,6 +70,8 @@ | |
type: string | ||
choices: ['error', 'skip', 'warn'] | ||
version_added: 2.0.0 | ||
extends_documentation_fragment: | ||
- amazon.aws.aws_boto3 | ||
''' | ||
|
||
EXAMPLES = ''' | ||
|