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 1a4da2c commit f0a2030
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions plugins/modules/iam_mfa_device_info.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@
- The name of the user whose MFA devices will be listed
type: str
extends_documentation_fragment:
- ansible.amazon.aws
- ansible.amazon.ec2
- amazon.aws.aws
- amazon.aws.ec2
requirements:
- boto3
Expand Down Expand Up @@ -70,12 +70,12 @@
HAS_BOTO3 = False

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


def list_mfa_devices(connection, module):
Expand Down

0 comments on commit f0a2030

Please sign in to comment.