Skip to content

Commit

Permalink
Rename collection (ansible-collections#12)
Browse files Browse the repository at this point in the history
* Rename core collection

Rename references to ansible.amazon to amazon.aws.

* Rename community.amazon to community.aws
Fix pep8 line lengths for rewritten amazon.aws imports

* Missed a path in shippable.sh
* Dependency repos moved

This commit was initially merged in https://github.com/ansible-collections/community.aws
See: ansible-collections@235c5db
  • Loading branch information
jillr authored and alinabuzachis committed Oct 6, 2023
1 parent 8e0466c commit 5884aa6
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions plugins/modules/iam_managed_policy.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@
author: "Dan Kozlowski (@dkhenry)"
extends_documentation_fragment:
- ansible.amazon.aws
- ansible.amazon.ec2
- amazon.aws.aws
- amazon.aws.ec2
requirements:
- boto3
Expand Down Expand Up @@ -128,14 +128,14 @@
pass # caught by imported HAS_BOTO3

from ansible.module_utils.basic import AnsibleModule
from ansible_collections.ansible.amazon.plugins.module_utils.ec2 import (boto3_conn,
get_aws_connection_info,
ec2_argument_spec,
AWSRetry,
camel_dict_to_snake_dict,
HAS_BOTO3,
compare_policies,
)
from ansible_collections.amazon.aws.plugins.module_utils.ec2 import (boto3_conn,
get_aws_connection_info,
ec2_argument_spec,
AWSRetry,
camel_dict_to_snake_dict,
HAS_BOTO3,
compare_policies,
)
from ansible.module_utils._text import to_native


Expand Down

0 comments on commit 5884aa6

Please sign in to comment.