diff --git a/docs/docsite/rst/dev_guidelines.rst b/docs/docsite/rst/dev_guidelines.rst index 31f9dfbfe5c..cdb567fdb79 100644 --- a/docs/docsite/rst/dev_guidelines.rst +++ b/docs/docsite/rst/dev_guidelines.rst @@ -299,6 +299,7 @@ that should be included into almost all AWS modules: * ``aws`` - contains the common boto3 connection parameters * ``ec2`` - contains the common region parameter required for many AWS modules +* ``aws_boto3`` - contains the minimum requirements for the collection * ``tags`` - contains the common tagging parameters used by many AWS modules These fragments should be used rather than re-documenting these properties to ensure consistency @@ -312,6 +313,7 @@ and that the more esoteric connection options are documented. For example: extends_documentation_fragment: - amazon.aws.aws - amazon.aws.ec2 + - amazon.aws.aws_boto3 ''' .. _ansible_collections.amazon.aws.docsite.dev_exceptions: diff --git a/plugins/modules/cloudtrail.py b/plugins/modules/cloudtrail.py index aa3b637cee5..0126117eed5 100644 --- a/plugins/modules/cloudtrail.py +++ b/plugins/modules/cloudtrail.py @@ -95,6 +95,7 @@ - amazon.aws.aws - amazon.aws.ec2 - amazon.aws.tags + - amazon.aws.aws_boto3 '''