-
Notifications
You must be signed in to change notification settings - Fork 341
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix linting issues. (#701) Should fix #804 Fix linting issues reported by validate-modules in plugins SUMMARY See ansible-collections/news-for-maintainers#9. ISSUE TYPE Bugfix Pull Request COMPONENT NAME various Reviewed-by: Jill R SUMMARY ISSUE TYPE Bugfix Pull Request Docs Pull Request Feature Pull Request New Module Pull Request COMPONENT NAME ADDITIONAL INFORMATION Reviewed-by: Gonéri Le Bouder <[email protected]> Co-authored-by: Alina Buzachis <[email protected]>
- Loading branch information
1 parent
64c4f0a
commit 8e9d3d8
Showing
10 changed files
with
51 additions
and
33 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,9 @@ | ||
bugfixes: | ||
- "aws_resource_actions callback plugin - fix linting errors in documentation data (https://github.com/ansible-collections/amazon.aws/pull/701)." | ||
- "aws_ec2 inventory plugin - fix linting errors in documentation data (https://github.com/ansible-collections/amazon.aws/pull/701)." | ||
- "aws_rds inventory plugin - fix linting errors in documentation data (https://github.com/ansible-collections/amazon.aws/pull/701)." | ||
- "aws_account_attribute lookup plugin - fix linting errors in documentation data (https://github.com/ansible-collections/amazon.aws/pull/701)." | ||
- "aws_account_attribute lookup plugin - fix linting errors in documentation data (https://github.com/ansible-collections/amazon.aws/pull/701)." | ||
- "aws_secret lookup plugin - fix linting errors in documentation data (https://github.com/ansible-collections/amazon.aws/pull/701)." | ||
- "aws_service_ip_ranges lookup plugin - fix linting errors in documentation data (https://github.com/ansible-collections/amazon.aws/pull/701)." | ||
- "aws_ssm lookup plugin - fix linting errors in documentation data (https://github.com/ansible-collections/amazon.aws/pull/701)." |
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
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 |
---|---|---|
|
@@ -4,9 +4,9 @@ | |
__metaclass__ = type | ||
|
||
DOCUMENTATION = ''' | ||
lookup: aws_account_attribute | ||
name: aws_account_attribute | ||
author: | ||
- Sloane Hertel <[email protected]> | ||
- Sloane Hertel (@s-hertel) <[email protected]> | ||
requirements: | ||
- python >= 3.6 | ||
- boto3 | ||
|
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 |
---|---|---|
|
@@ -5,9 +5,9 @@ | |
__metaclass__ = type | ||
|
||
DOCUMENTATION = r''' | ||
lookup: aws_secret | ||
name: aws_secret | ||
author: | ||
- Aaron Smith <[email protected]> | ||
- Aaron Smith (!UNKNOWN) <[email protected]> | ||
requirements: | ||
- python >= 3.6 | ||
- boto3 | ||
|
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 |
---|---|---|
|
@@ -5,9 +5,9 @@ | |
__metaclass__ = type | ||
|
||
DOCUMENTATION = ''' | ||
lookup: aws_service_ip_ranges | ||
name: aws_service_ip_ranges | ||
author: | ||
- James Turner <[email protected]> | ||
- James Turner (!UNKNOWN) <[email protected]> | ||
requirements: | ||
- must have public internet connectivity | ||
short_description: Look up the IP ranges for services provided in AWS such as EC2 and S3. | ||
|
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 |
---|---|---|
|
@@ -8,11 +8,11 @@ | |
__metaclass__ = type | ||
|
||
DOCUMENTATION = ''' | ||
lookup: aws_ssm | ||
name: aws_ssm | ||
author: | ||
- Bill Wang <ozbillwang(at)gmail.com> | ||
- Marat Bakeev <hawara(at)gmail.com> | ||
- Michael De La Rue <[email protected]> | ||
- Bill Wang (!UNKNOWN) <ozbillwang(at)gmail.com> | ||
- Marat Bakeev (!UNKNOWN) <hawara(at)gmail.com> | ||
- Michael De La Rue (!UNKNOWN) <[email protected]> | ||
requirements: | ||
- python >= 3.6 | ||
- boto3 | ||
|
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