Skip to content

Commit

Permalink
Merge branch 'master' into dynamodb_table_boto3_billing
Browse files Browse the repository at this point in the history
  • Loading branch information
marknet15 committed Jan 27, 2021
2 parents a914f68 + 6c88315 commit 4d75098
Show file tree
Hide file tree
Showing 499 changed files with 126,674 additions and 6,881 deletions.
22 changes: 18 additions & 4 deletions .github/BOTMETA.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,15 @@
automerge: false
files:
$connections/aws_ssm.py:
docs/:
labels: docs
$connection/:
labels: connection
$connection/aws_ssm.py:
$modules/:
authors: wimnat
maintainers: $team_aws
ignore: erydo nadirollo seiffert tedder
ignore: erydo joshsouza nadirollo seiffert tedder
label: modules
$modules/_aws_region_facts.py:
authors: Sodki
$modules/_aws_s3_bucket_facts.py:
Expand Down Expand Up @@ -91,7 +96,7 @@ files:
$modules/aws_eks_cluster.py:
authors: willthames
$modules/aws_elasticbeanstalk_app.py:
authors: hsingh viper233
authors: viper233
$modules/aws_inspector_target.py:
authors: dennisconrad
$modules/aws_kms.py:
Expand Down Expand Up @@ -340,7 +345,16 @@ files:
authors: bekelchik piontas
$modules/sts_session_token.py:
authors: pwnall
scripts/inventory/:
labels: inventory
tests/:
labels: tests
tests/integration/:
labels: integrations
tests/units/:
labels: units

macros:
connections: plugins/connection
connection: plugins/connection
modules: plugins/modules
team_aws: jillr s-hertel tremble
5 changes: 5 additions & 0 deletions .github/settings.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# DO NOT MODIFY

# Settings: https://probot.github.io/apps/settings/
# Pull settings from https://github.com/ansible-collections/.github/blob/master/.github/settings.yml
_extends: ".github"
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -384,4 +384,7 @@ $RECYCLE.BIN/
# Windows shortcuts
*.lnk

# Antsibull-changelog
changelogs/.plugin-cache.yaml

# End of https://www.gitignore.io/api/git,linux,pydev,python,windows,pycharm+all,jupyternotebook,vim,webstorm,emacs,dotenv
354 changes: 354 additions & 0 deletions CHANGELOG.rst

Large diffs are not rendered by default.

79 changes: 79 additions & 0 deletions CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,79 @@
# Contributing

## Getting Started

General information about setting up your Python environment, testing modules,
Ansible coding styles, and more can be found in the [Ansible Community Guide](
https://docs.ansible.com/ansible/latest/community/index.html).

Information about boto library usage, module utils, testing, and more can be
found in the [AWS Guidelines](https://docs.ansible.com/ansible/devel/dev_guide/platforms/aws_guidelines.html)
documentation.

## AWS Collections

There are two related collections containing AWS content (modules and plugins).

### amazon.aws
This collection contains the `module_utils` (shared libraries) used by both collections.
Content in this collection is included downstream in Red Hat Ansible Automation Platform.

Code standards, test coverage, and other supportability criteria may be higher in this collection.

### community.aws
This collection contains modules and plugins contributed and maintained by the Ansible AWS
community. The `community.aws` collection is tested and generally assured to work in
conjunction with `amazon.aws`.

New modules and plugins developed by the community should be proposed to `community.aws`.
Content in this collection that is stable and meets other acceptance criteria has the potential
to be promoted and migrated into `amazon.aws`.

## Submitting Issues
All software has bugs, and the `community.aws` collection is no exception. When you find a bug,
you can help tremendously by [telling us about it](https://github.com/ansible-collections/community.aws/issues/new/choose).

If you should discover that the bug you're trying to file already exists in an issue,
you can help by verifying the behavior of the reported bug with a comment in that
issue, or by reporting any additional information

## Pull Requests

All modules MUST have integration tests for new features. Upgrading to boto3 shall be considered a feature request.
Bug fixes for modules that currently have integration tests SHOULD have tests added.
New modules should be submitted to the [community.aws](https://github.com/ansible-collections/community.aws) collection
and MUST have integration tests.

Expected test criteria:
* Resource creation under check mode
* Resource creation
* Resource creation again (idempotency) under check mode
* Resource creation again (idempotency)
* Resource modification under check mode
* Resource modification
* Resource modification again (idempotency) under check mode
* Resource modification again (idempotency)
* Resource deletion under check mode
* Resource deletion
* Resource deletion (of a non-existent resource) under check mode
* Resource deletion (of a non-existent resource)

Where modules have multiple parameters we recommend running through the 4-step modification cycle for each parameter the module accepts, as well as a modification cycle where as most, if not all, parameters are modified at the same time.

For general information on running the integration tests see the
[Integration Tests page of the Module Development Guide](https://docs.ansible.com/ansible/devel/dev_guide/testing_integration.html#testing-integration),
especially the section on configuration for cloud tests. For questions about writing tests the Ansible AWS community can
be found on Freenode IRC as detailed below.


### Code of Conduct
The `community.aws` collection follows the Ansible project's
[Code of Conduct](https://docs.ansible.com/ansible/devel/community/code_of_conduct.html).
Please read and familiarize yourself with this document.

### IRC
Our IRC channels may require you to register your nickname. If you receive an error when you connect, see
[Freenode's Nickname Registration guide](https://freenode.net/kb/answer/registration) for instructions

The `#ansible-aws` channel on Freenode irc is the main and official place to discuss use and development
of the `community.aws` collection.
Loading

0 comments on commit 4d75098

Please sign in to comment.