-
Notifications
You must be signed in to change notification settings - Fork 341
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
DNM Migrate elb_classic_lb_info modules and tests #2350
DNM Migrate elb_classic_lb_info modules and tests #2350
Commits on Oct 21, 2024
-
This commit was initially merged in https://github.com/ansible-collections/community.aws See: ansible-collections/community.aws@eb75681
Configuration menu - View commit details
-
Copy full SHA for fffc818 - Browse repository at this point
Copy the full SHA fffc818View commit details -
Rename collection (ansible-collections#12)
* 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
Configuration menu - View commit details
-
Copy full SHA for 3553260 - Browse repository at this point
Copy the full SHA 3553260View commit details -
Fix more doc issues where strings are parsed as datetimes by YAML par…
…ser. (ansible-collections#55) This commit was initially merged in https://github.com/ansible-collections/community.aws See: ansible-collections/community.aws@4a0e1a4
Configuration menu - View commit details
-
Copy full SHA for 20e54cc - Browse repository at this point
Copy the full SHA 20e54ccView commit details -
Remove METADATA and cleanup galaxy.yml (ansible-collections#70)
* Remove ANSIBLE_METADATA entirely, see ansible/ansible/pull/69454. Remove `license` field from galaxy.yml, in favor of `license_file`. This commit was initially merged in https://github.com/ansible-collections/community.aws See: ansible-collections/community.aws@05672a6
Configuration menu - View commit details
-
Copy full SHA for e4654ca - Browse repository at this point
Copy the full SHA e4654caView commit details -
Collections related fixes for CI (ansible-collections#96)
* Update module deprecations Switch version to `removed_at_date` * Don't install amazon.aws from galaxy We've been using galaxy to install amazon.aws in shippable, but that doesn't really work if we aren't publising faster. Get that collection from git so it is most up to date. * We need to declare python test deps now * missed a python dep This commit was initially merged in https://github.com/ansible-collections/community.aws See: ansible-collections/community.aws@7cd211e
Configuration menu - View commit details
-
Copy full SHA for ded2bec - Browse repository at this point
Copy the full SHA ded2becView commit details -
Update Examples with FQCN (ansible-collections#67)
Updated module examples with FQCN Signed-off-by: Abhijeet Kasurde <[email protected]> This commit was initially merged in https://github.com/ansible-collections/community.aws See: ansible-collections/community.aws@98173ae
Configuration menu - View commit details
-
Copy full SHA for 2346e58 - Browse repository at this point
Copy the full SHA 2346e58View commit details -
Update module_utils paths to remove aws subdir (ansible-collections#23)
Co-authored-by: Ezekiel Hendrickson <[email protected]> This commit was initially merged in https://github.com/ansible-collections/community.aws See: ansible-collections/community.aws@10853d9
Configuration menu - View commit details
-
Copy full SHA for a4f2c2e - Browse repository at this point
Copy the full SHA a4f2c2eView commit details -
Update docs (ansible-collections#99)
* Update docs Remove .git from repo url so links in readme will generate correctly Add required ansible version Run latest version of add_docs.py Add version_added string to modules * galaxy.yml was missing authors This commit was initially merged in https://github.com/ansible-collections/community.aws See: ansible-collections/community.aws@96ee268
Configuration menu - View commit details
-
Copy full SHA for 0170738 - Browse repository at this point
Copy the full SHA 0170738View commit details -
Docs: sanity fixes (ansible-collections#133)
Signed-off-by: Abhijeet Kasurde <[email protected]> This commit was initially merged in https://github.com/ansible-collections/community.aws See: ansible-collections/community.aws@059cf9e
Configuration menu - View commit details
-
Copy full SHA for 3efc03a - Browse repository at this point
Copy the full SHA 3efc03aView commit details -
aws modules: fix examples to use FQCN for builtin modules/plugins (an…
…sible-collections#144) This commit was initially merged in https://github.com/ansible-collections/community.aws See: ansible-collections/community.aws@92bebdd
Configuration menu - View commit details
-
Copy full SHA for 1462b6b - Browse repository at this point
Copy the full SHA 1462b6bView commit details -
AWS ELB: Return empty list when no load balancer name was found (ansi…
…ble-collections#215) When trying to describe a LoadBalancer that doesn't exist, the module crash. Instead of that behavior, this commit will return an empty list when no load balancer is found, allowing to deal next tasks by reading the output of the module. Co-authored-by: Pedro Magalhães <[email protected]> This commit was initially merged in https://github.com/ansible-collections/community.aws See: ansible-collections/community.aws@3d5ffdc
Configuration menu - View commit details
-
Copy full SHA for 7cef0a3 - Browse repository at this point
Copy the full SHA 7cef0a3View commit details -
Update the default module requirements from python 2.6/boto to python…
… 3.6/boto3 This commit was initially merged in https://github.com/ansible-collections/community.aws See: ansible-collections/community.aws@c097c55
Configuration menu - View commit details
-
Copy full SHA for 51da143 - Browse repository at this point
Copy the full SHA 51da143View commit details -
ELB info: return all LB if names is not defined (ansible-collections#693
) ELB info: return all LB if names is not defined SUMMARY Documentation says options: names: description: - List of ELB names to gather information about. Pass this option to gather information about a set of ELBs, otherwise, all ELBs are returned. But doing this elb_classic_lb_info returns an empty list. ISSUE TYPE Bugfix Pull Request COMPONENT NAME elb_classic_lb_info ADDITIONAL INFORMATION - hosts: localhost tasks: - community.aws.elb_classic_lb_info: {} register: elb_info - debug: var=elb_info $ ansible-playbook playbook.yaml TASK [community.aws.elb_classic_lb_info] ******** ok: [localhost] TASK [debug] ******** ok: [localhost] => { "elb_info": { "changed": false, "elbs": [], # <-- should return list of all ELB "failed": false } } Reviewed-by: Mark Chappell <None> Reviewed-by: None <None> Reviewed-by: None <None> This commit was initially merged in https://github.com/ansible-collections/community.aws See: ansible-collections/community.aws@bebdd75
Configuration menu - View commit details
-
Copy full SHA for d759443 - Browse repository at this point
Copy the full SHA d759443View commit details -
Remove deprecated "facts" aliases (ansible-collections#814)
Remove deprecated "facts" aliases SUMMARY Modules named "facts.py" that do not return ansible_facts were renamed to "info.py" in 2.9. Remove these aliases now that the deprecation period is over. This PR should be included in 3.0.0 of the collection. ISSUE TYPE Bugfix Pull Request COMPONENT NAME *_facts.py Reviewed-by: Mark Chappell <None> Reviewed-by: Jill R <None> Reviewed-by: None <None> This commit was initially merged in https://github.com/ansible-collections/community.aws See: ansible-collections/community.aws@68aaa70
Configuration menu - View commit details
-
Copy full SHA for 0cabef0 - Browse repository at this point
Copy the full SHA 0cabef0View commit details -
Integration test dependency cleanup (ansible-collections#1086)
Integration test dependency cleanup SUMMARY remove dependencies on setup_remote_tmp_dir where it's not used (often just copy & paste from another test) remove setup_ec2 (no main.yml means it's not doing anything) remove prepare_tests (empty main.yml means it's not doing anything) ISSUE TYPE Feature Pull Request COMPONENT NAME tests/integration/targets ADDITIONAL INFORMATION By cleaning up what we have we reduce the chance of people copying things about "because that's what test XYZ did". Reviewed-by: Alina Buzachis <None> Reviewed-by: Mark Woolley <[email protected]> This commit was initially merged in https://github.com/ansible-collections/community.aws See: ansible-collections/community.aws@dd12046
Configuration menu - View commit details
-
Copy full SHA for c99d2a0 - Browse repository at this point
Copy the full SHA c99d2a0View commit details -
Update extends_documentation_fragment with amazon.aws.boto3 (ansible-…
…collections#1459) Update extends_documentation_fragment with amazon.aws.boto3 Depends-On: ansible/ansible-zuul-jobs#1654 SUMMARY As per ansible-collections#985 add amazon.aws.boto3. ISSUE TYPE Docs Pull Request COMPONENT NAME several Reviewed-by: Jill R <None> Reviewed-by: Mark Chappell <None> Reviewed-by: Markus Bergholz <[email protected]> This commit was initially merged in https://github.com/ansible-collections/community.aws See: ansible-collections/community.aws@bd3c03f
Configuration menu - View commit details
-
Copy full SHA for 6aad82a - Browse repository at this point
Copy the full SHA 6aad82aView commit details -
Fix non-matching defaults in docs (ansible-collections#1576)
Fix non-matching defaults in docs Depends-On: ansible-collections#1579 SUMMARY Fix various non-matching default values exposed by ansible/ansible#79267. ISSUE TYPE Docs Pull Request COMPONENT NAME various Reviewed-by: Markus Bergholz <[email protected]> This commit was initially merged in https://github.com/ansible-collections/community.aws See: ansible-collections/community.aws@15568f0
Configuration menu - View commit details
-
Copy full SHA for 067ec70 - Browse repository at this point
Copy the full SHA 067ec70View commit details -
Ansible User-Agent identification for community.aws (ansible-collecti…
…ons#1632) Ansible User-Agent identification for community.aws SUMMARY The value will be similar to this APN/1.0 Ansible/2.14.1 community.aws/6.0.0-dev0 ISSUE TYPE Feature Pull Request Reviewed-by: Mark Chappell <None> Reviewed-by: Bikouo Aubin <None> Reviewed-by: Alina Buzachis <None> This commit was initially merged in https://github.com/ansible-collections/community.aws See: ansible-collections/community.aws@a8cbce2
Configuration menu - View commit details
-
Copy full SHA for a8847ab - Browse repository at this point
Copy the full SHA a8847abView commit details -
Cleanup headers and imports (ansible-collections#1738)
Cleanup headers and imports SUMMARY Mass update of imports, docs fragments and file headers Many of the amazon.aws module_utils and docs fragments got moved about, update community.aws to reflect this. Consistently apply the comment headers as documented at https://docs.ansible.com/ansible/devel/dev_guide/developing_modules_documenting.html#python-shebang-utf-8-coding ISSUE TYPE Docs Pull Request Feature Pull Request COMPONENT NAME ADDITIONAL INFORMATION Header cleanup based upon: https://docs.ansible.com/ansible/devel/dev_guide/developing_modules_documenting.html#python-shebang-utf-8-coding Begin your Ansible module with #!/usr/bin/python - this “shebang” allows ansible_python_interpreter to work. Follow the shebang immediately with # -*- coding: utf-8 -*- to clarify that the file is UTF-8 encoded. and https://docs.ansible.com/ansible/devel/dev_guide/developing_modules_documenting.html#copyright-and-license After the shebang and UTF-8 coding, add a copyright line with the original copyright holder and a license declaration. The license declaration should be ONLY one line, not the full GPL prefix. ... Additions to the module (for instance, rewrites) are not permitted to add additional copyright lines other than the default copyright statement if missing: Reviewed-by: Alina Buzachis This commit was initially merged in https://github.com/ansible-collections/community.aws See: ansible-collections/community.aws@a4f20bf
Configuration menu - View commit details
-
Copy full SHA for a1610e6 - Browse repository at this point
Copy the full SHA a1610e6View commit details -
Big Black PR (ansible-collections#1784)
* Black prep * Black * changelog * Fix pylint unused-import in tests * Split SSM connection plugin changes * disable glue tests - bucket's missing * Disable s3_logging and s3_sync tests This commit was initially merged in https://github.com/ansible-collections/community.aws See: ansible-collections/community.aws@2c4575c
Configuration menu - View commit details
-
Copy full SHA for 8f20c89 - Browse repository at this point
Copy the full SHA 8f20c89View commit details -
Mass update of docs and tests (credentials/session tokens) (ansible-c…
…ollections#1921) Mass update of docs and tests (credentials/session tokens) SUMMARY We had a cleanup of credentials/session parameters which included a batch of deprecations and renames. Ensure that all of our tests and docs are using the 'canonical' names ISSUE TYPE Docs Pull Request COMPONENT NAME plugins/modules/batch_compute_environment.py plugins/modules/cloudformation_exports_info.py plugins/modules/ec2_vpc_vpn.py plugins/modules/elasticache.py plugins/modules/elasticache_parameter_group.py plugins/modules/elasticache_snapshot.py plugins/modules/ses_rule_set.py plugins/modules/sts_assume_role.py plugins/modules/sts_session_token.py tests/integration ADDITIONAL INFORMATION See also ansible-collections#1172 ansible-collections#1714 Reviewed-by: Alina Buzachis This commit was initially merged in https://github.com/ansible-collections/community.aws See: ansible-collections/community.aws@4a5b50e
Configuration menu - View commit details
-
Copy full SHA for 06081a2 - Browse repository at this point
Copy the full SHA 06081a2View commit details -
Apply isort and flynt (ansible-collections#1962)
SUMMARY Apply isort - see also ansible-collections#1771 Apply flynt - see also ansible-collections#1802 ISSUE TYPE Feature Pull Request COMPONENT NAME ADDITIONAL INFORMATION This commit was initially merged in https://github.com/ansible-collections/community.aws See: ansible-collections/community.aws@c0117b5
Configuration menu - View commit details
-
Copy full SHA for fb0bf19 - Browse repository at this point
Copy the full SHA fb0bf19View commit details -
fix unsafe asserts (ansible-collections#2013)
fix unsafe asserts SUMMARY Closes ansible-collections#2012 ISSUE TYPE Bugfix Pull Request COMPONENT NAME integrationtests Reviewed-by: Mark Chappell Reviewed-by: Alina Buzachis This commit was initially merged in https://github.com/ansible-collections/community.aws See: ansible-collections/community.aws@4bdcecd
Configuration menu - View commit details
-
Copy full SHA for 7872b52 - Browse repository at this point
Copy the full SHA 7872b52View commit details -
ansible-lint (documentation) cleanup for plugins/ (ansible-collection…
…s#2036) ansible-lint (documentation) cleanup for plugins/ SUMMARY Fixes an array of ansible-lint failures in plugins/ Adds ansible-lint plugins/ to tox -m lint ISSUE TYPE Docs Pull Request COMPONENT NAME plugins/ ADDITIONAL INFORMATION docs changes only (no changelog fragment needed) Reviewed-by: Alina Buzachis This commit was initially merged in https://github.com/ansible-collections/community.aws See: ansible-collections/community.aws@6dd4a00
Configuration menu - View commit details
-
Copy full SHA for 232ae1d - Browse repository at this point
Copy the full SHA 232ae1dView commit details -
elb_classic_lb_info: Refactor elb_classic_lb_info module (ansible-col…
…lections#2139) SUMMARY Added type hints and function descriptions. Updated return block of the module. ISSUE TYPE Docs Pull Request COMPONENT NAME elb_classic_lb_info ADDITIONAL INFORMATION Reviewed-by: Markus Bergholz <[email protected]> Reviewed-by: Alina Buzachis Reviewed-by: Mandar Kulkarni <[email protected]> Reviewed-by: Mark Chappell Reviewed-by: GomathiselviS This commit was initially merged in https://github.com/ansible-collections/community.aws See: ansible-collections/community.aws@2ad8a8f
Configuration menu - View commit details
-
Copy full SHA for 7aaedfc - Browse repository at this point
Copy the full SHA 7aaedfcView commit details -
DNM Migrate elb_classic_lb_info* modules and tests (ansible-collectio…
…ns#2163) Depends-On: ansible-collections#2315 Remove elb_classic_lb_info* modules and tests These modules have been migrated to amazon.aws Update runtime.yml with redirects to that collection Update ignore files Reviewed-by: Bikouo Aubin Reviewed-by: Alina Buzachis This commit was initially merged in https://github.com/ansible-collections/community.aws See: ansible-collections/community.aws@7f11acb
Configuration menu - View commit details
-
Copy full SHA for 8019326 - Browse repository at this point
Copy the full SHA 8019326View commit details -
Revert "DNM Migrate elb_classic_lb_info* modules and tests (ansible-c…
…ollections#2163)" (ansible-collections#2170) This reverts commit 7f11acb. Reverts ansible-collections#2163 ansible-collections#2163 changes are being reverted as it has been agreed to hold off on merging the migration PRs until a plan is set to migrate all planned modules at once. We need to disable the squash strategy in github first to retain commit history. SUMMARY Reviewed-by: GomathiselviS This commit was initially merged in https://github.com/ansible-collections/community.aws See: ansible-collections/community.aws@4cf5a6f
Configuration menu - View commit details
-
Copy full SHA for 7056b42 - Browse repository at this point
Copy the full SHA 7056b42View commit details -
Configuration menu - View commit details
-
Copy full SHA for 3186629 - Browse repository at this point
Copy the full SHA 3186629View commit details -
Configuration menu - View commit details
-
Copy full SHA for 17a8a29 - Browse repository at this point
Copy the full SHA 17a8a29View commit details -
Configuration menu - View commit details
-
Copy full SHA for d5f6aa6 - Browse repository at this point
Copy the full SHA d5f6aa6View commit details -
Configuration menu - View commit details
-
Copy full SHA for 565357f - Browse repository at this point
Copy the full SHA 565357fView commit details -
Configuration menu - View commit details
-
Copy full SHA for 5c21687 - Browse repository at this point
Copy the full SHA 5c21687View commit details
Commits on Oct 22, 2024
-
Configuration menu - View commit details
-
Copy full SHA for 9c54ea3 - Browse repository at this point
Copy the full SHA 9c54ea3View commit details