Skip to content

Commit

Permalink
Rename collection (#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/community.aws@235c5db
  • Loading branch information
jillr authored and alinabuzachis committed Oct 6, 2023
1 parent ed7c3f8 commit 804a1a0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions plugins/modules/iam_password_policy.py
Original file line number Diff line number Diff line change
Expand Up @@ -80,8 +80,8 @@
type: bool
aliases: [password_expire, expire]
extends_documentation_fragment:
- ansible.amazon.aws
- ansible.amazon.ec2
- amazon.aws.aws
- amazon.aws.ec2
'''

Expand All @@ -107,8 +107,8 @@
except ImportError:
pass # caught by AnsibleAWSModule

from ansible_collections.ansible.amazon.plugins.module_utils.aws.core import AnsibleAWSModule
from ansible_collections.ansible.amazon.plugins.module_utils.ec2 import camel_dict_to_snake_dict
from ansible_collections.amazon.aws.plugins.module_utils.aws.core import AnsibleAWSModule
from ansible_collections.amazon.aws.plugins.module_utils.ec2 import camel_dict_to_snake_dict


class IAMConnection(object):
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
security_token: "{{ security_token | default(omit) }}"
region: "{{ aws_region }}"
collections:
- ansible.amazon
- amazon.aws
block:
- name: set iam password policy
iam_password_policy:
Expand Down

0 comments on commit 804a1a0

Please sign in to comment.