Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Migrate ec2 vpc endpoint modules #392

Closed
wants to merge 26 commits into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
92d53c9
Initial commit
jillr Mar 2, 2020
0e3509f
migration test cleanup
jillr Mar 3, 2020
fb9ad47
Rename collection (#12)
jillr Mar 25, 2020
f4d7b63
Remove METADATA and cleanup galaxy.yml (#70)
jillr May 19, 2020
de6ca9e
Collections related fixes for CI (#96)
jillr Jun 16, 2020
b1e3252
Update Examples with FQCN (#67)
Akasurde Jun 16, 2020
b053393
Update docs (#99)
jillr Jun 17, 2020
d72cedd
Docs: sanity fixes (#133)
Akasurde Jul 15, 2020
5da9588
Bulk migration to AnsibleAWSModule (#173)
tremble Aug 12, 2020
0397789
Python 3 compatibility error handling: use to_native(e) instead of st…
veloutin Aug 15, 2020
7c6a87f
Cleanup: Bulk Migration from boto3_conn to module.client() (#188)
tremble Aug 26, 2020
1ce2ab4
Bulk import cleanup (#360)
tremble Jan 16, 2021
599dddd
Bulk migration to fail_json_aws (#361)
tremble Jan 27, 2021
cde6a4c
ec2_vpc_endpoint - deprecate policy_file (#366)
tremble Feb 12, 2021
5f48c85
ec2_vpc_endpoint - fixup deletion 'changed' (#362)
tremble Feb 12, 2021
bb5462e
Yet more integration test aliases file cleanup (#431)
tremble Feb 21, 2021
4dd5e48
Added support for 'vpc_endpoint_type'. (#460)
Proksima Mar 7, 2021
59319ad
Fix version_added and changelog from #460 (#465)
tremble Mar 8, 2021
33afe8a
More no_log=False to fix sanity tests (#474)
felixfontein Mar 13, 2021
7f33bd6
New module - ec2_vpc_endpoint_service_info (#346)
tremble Mar 19, 2021
9e9411d
Stabilize and improve ec2_vpc_endpoint modules (#473)
jillr Mar 24, 2021
8348213
Update ec2_vpc_endpoint_info AWS retries
tremble Apr 10, 2021
c6a8724
Add a unique tag to test against
tremble Apr 10, 2021
23defe8
Migrate ec2_vpc_endpoint* modules to amazon.aws
jillr Jun 21, 2021
fbd7cdc
Add a changelog and sanity ignores
jillr Jun 21, 2021
36b8a47
Do symlinks correctly
jillr Jun 21, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
major_changes:
- ec2_vpc_endpoint - The module has been migrated from the ``community.aws`` collection. Playbooks using the Fully Qualified Collection Name for this module should be updated to use ``amazon.aws.ec2_vpc_endpoint_info``.
- ec2_vpc_endpoint_info - The module has been migrated from the ``community.aws`` collection. Playbooks using the Fully Qualified Collection Name for this module should be updated to use ``amazon.aws.ec2_vpc_endpoint_info``.
- ec2_vpc_endpoint_service_info - The module has been migrated from the ``community.aws`` collection. Playbooks using the Fully Qualified Collection Name for this module should be updated to use ``amazon.aws.ec2_vpc_endpoint_service_info``.
11 changes: 11 additions & 0 deletions meta/runtime.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ action_groups:
- ec2_snapshot_facts
- ec2_vol_facts
- ec2_vpc_dhcp_option_facts
- ec2_vpc_endpoint
- ec2_vpc_endpoint_facts
- ec2_vpc_endpoint_info
- ec2_vpc_endpoint_service_info
- ec2_vpc_net_facts
- ec2_vpc_subnet_facts
- aws_az_info
Expand Down Expand Up @@ -78,6 +82,13 @@ plugin_routing:
warning_text: >-
ec2_ami_facts was renamed in Ansible 2.9 to ec2_ami_info.
Please update your tasks.
ec2_vpc_endpoint_facts:
deprecation:
removal_date: 2021-12-01
warning_text: >-
ec2_vpc_endpoint_facts was renamed in Ansible 2.9 to
ec2_vpc_endpoint_info.
Please update your tasks.
ec2_eni_facts:
deprecation:
removal_date: 2021-12-01
Expand Down
Loading