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

Promote elb_application_lb* module and test #1043

Merged
Changes from 1 commit
Commits
Show all changes
52 commits
Select commit Hold shift + click to select a range
420a7e6
Initial commit
jillr Mar 2, 2020
07bda4f
migration test cleanup
jillr Mar 3, 2020
ad20817
Rename collection (#12)
jillr Mar 25, 2020
2f55086
Use `coverage<5` in integration tests. (#13)
mattclay Mar 27, 2020
ad631f8
Remove METADATA and cleanup galaxy.yml (#70)
jillr May 19, 2020
0e31b35
Collections related fixes for CI (#96)
jillr Jun 16, 2020
47d58a2
Update Examples with FQCN (#67)
Akasurde Jun 16, 2020
e8fd42e
Update module_utils paths to remove aws subdir (#23)
flowerysong Jun 16, 2020
7066cf4
Update docs (#99)
jillr Jun 17, 2020
2afd556
Docs: sanity fixes (#133)
Akasurde Jul 15, 2020
f300d4a
aws modules: fix examples to use FQCN for builtin modules/plugins (#144)
Andersson007 Jul 17, 2020
e8812ca
Bulk migration to AnsibleAWSModule (#173)
tremble Aug 12, 2020
d16a045
Python 3 compatibility error handling: use to_native(e) instead of st…
veloutin Aug 15, 2020
5db13cc
Cleanup: Bulk Migration from boto3_conn to module.client() (#188)
tremble Aug 26, 2020
84dccd8
Sanity test / doc-default-does-not-match-spec fixups (#320)
tremble Dec 7, 2020
9945e67
elb_application_lb: also clean up the associate listeners (#350)
goneri Jan 12, 2021
72dd7ab
Bulk import cleanup (#360)
tremble Jan 16, 2021
8ba74f5
elb_application_lb: enable the functional test (#348)
goneri Jan 18, 2021
ef8bee1
Bulk migration to fail_json_aws (#361)
tremble Jan 27, 2021
3dbcb41
Move tests to using module_defaults (#368)
tremble Feb 10, 2021
8bbff85
Avoid per-test virtual environments where possible (#467)
tremble Mar 10, 2021
b249b57
elb_application_lb: test a rule based on http-header (#347)
goneri Mar 16, 2021
ee981d6
update elb modules adding ip_address_type parameters
abikouo Mar 25, 2021
8f3b22f
lint validation
abikouo Mar 29, 2021
2871a30
pep8 linting
abikouo Mar 29, 2021
b1ba737
Update main.yml
abikouo Apr 20, 2021
43145bd
Update full_test.yml
abikouo Apr 20, 2021
1962f50
Update setup.yml
abikouo Apr 20, 2021
fc287fe
Update plugins/modules/elb_application_lb_info.py
abikouo Apr 23, 2021
82940aa
Update test_alb_ip_address_type_options.yml
abikouo Apr 23, 2021
b6c279d
Update setup.yml
abikouo Apr 23, 2021
bff6672
sanity
abikouo Apr 23, 2021
efa4769
Update the default module requirements from python 2.6/boto to python…
tremble May 6, 2021
6dd056b
Remove shippable references from repo
jillr Apr 29, 2021
07b086f
tests: flag elb_application_lb as slow
goneri Jul 14, 2021
10202bc
Remove integration tests for unsupported versions of boto3/botocore
tremble Aug 6, 2021
6b75b61
Remove deprecated "facts" aliases (#814)
jillr Dec 2, 2021
5d4a479
add check_mode for elb_application_lb* & refactor integration tests (…
jatorcasso Feb 9, 2022
e89eac8
elb_application_lb - treat empty security group as VPC default (#971)
jatorcasso Mar 14, 2022
3a15625
Add backoff logic to elb_application_lb_info (#977)
marknet15 Mar 15, 2022
a95015e
elb_application_lb - support alb attributes (#963)
jatorcasso Mar 26, 2022
d5346b3
Integration test dependency cleanup (#1086)
tremble Apr 22, 2022
459f125
Add missing `elements` option to type: list that did not specify (#1116)
jatorcasso May 5, 2022
6c7f91f
Add retries to elb / target group info modules (#1113)
marknet15 May 17, 2022
608745e
Tagging fragment - Move simplest cases over to the docs fragment. (#1…
tremble Jun 1, 2022
2ce87e7
Add documentation for TargetGroupName (#1366)
tremble Jul 22, 2022
9a845c3
adjust booleans (#1420)
markuman Aug 26, 2022
ba55f71
Update runtime
GomathiselviS Sep 20, 2022
6ae654a
Update FQDN
GomathiselviS Sep 20, 2022
de6ac10
Remove collection reference inside the tests
GomathiselviS Sep 20, 2022
7f8407c
Add changelog fragment
GomathiselviS Sep 20, 2022
cf3986d
deleted tests/integration/targets/elb_application_lb/meta/main.yml
GomathiselviS Sep 21, 2022
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
Prev Previous commit
Next Next commit
Remove integration tests for unsupported versions of boto3/botocore
tremble authored and GomathiselviS committed Sep 20, 2022
commit 10202bc51d5b740c82b2fe419526fd114970d61f
Original file line number Diff line number Diff line change
@@ -91,11 +91,6 @@
state: present
register: tg

# Run tests for graceful failure with an old version of botocore
- include_tasks: test_multiple_actions_fail.yml
vars:
ansible_python_interpreter: "{{ virtualenv_interpreter }}"

# Run main tests
- include_tasks: test_alb_bad_listener_options.yml
- include_tasks: test_alb_ip_address_type_options.yml
28 changes: 0 additions & 28 deletions tests/integration/targets/elb_application_lb/tasks/main.yml
Original file line number Diff line number Diff line change
@@ -9,32 +9,4 @@
region: '{{ aws_region }}'
block:

# Prepare a virtual environment for multiple_actions_fail.yml
- set_fact:
virtualenv: "{{ remote_tmp_dir }}/virtualenv"
virtualenv_command: "{{ ansible_python_interpreter }} -m virtualenv"

- set_fact:
virtualenv_interpreter: "{{ virtualenv }}/bin/python"

- pip:
name: virtualenv

- pip:
name:
- 'botocore<1.10.30'
- boto3
- boto
- coverage<5
- cryptography
virtualenv: "{{ virtualenv }}"
virtualenv_command: "{{ virtualenv_command }}"
virtualenv_site_packages: no

- include_tasks: full_test.yml

always:

- file:
path: "{{ virtualenv }}"
state: absent

This file was deleted.

29 changes: 0 additions & 29 deletions tests/integration/targets/elb_application_lb_info/tasks/main.yml
Original file line number Diff line number Diff line change
@@ -8,33 +8,4 @@
security_token: '{{ security_token | default(omit) }}'
region: '{{ aws_region }}'
block:

# Prepare a virtual environment for multiple_actions_fail.yml
- set_fact:
virtualenv: "{{ remote_tmp_dir }}/virtualenv"
virtualenv_command: "{{ ansible_python_interpreter }} -m virtualenv"

- set_fact:
virtualenv_interpreter: "{{ virtualenv }}/bin/python"

- pip:
name: virtualenv

- pip:
name:
- 'botocore<1.10.30'
- boto3
- boto
- coverage<5
- cryptography
virtualenv: "{{ virtualenv }}"
virtualenv_command: "{{ virtualenv_command }}"
virtualenv_site_packages: no

- include_tasks: full_test.yml

always:

- file:
path: "{{ virtualenv }}"
state: absent