From f373f5a7704f98a6a6f831bac7616f9f9fdc2234 Mon Sep 17 00:00:00 2001 From: GomathiselviS Date: Wed, 5 Nov 2025 12:00:42 -0800 Subject: [PATCH 1/4] DNM: Testing new secret --- plugins/modules/validate_route_tables.py | 1 + 1 file changed, 1 insertion(+) diff --git a/plugins/modules/validate_route_tables.py b/plugins/modules/validate_route_tables.py index 197cb5c..78ca43b 100644 --- a/plugins/modules/validate_route_tables.py +++ b/plugins/modules/validate_route_tables.py @@ -281,6 +281,7 @@ def __init__(self): def validate_vpc(self, src_vpc_id, src_private_ips, dest_vpc_id, dest_subnet_cidrs): # Check whether resources are in the same VPC. If not, Cidr cannot overlap + # Test if not (dest_vpc_id[0] == src_vpc_id[0]): for dest_cidr in dest_subnet_cidrs: for ip_addr in src_private_ips: From b76c8a1888180f6461b544626fcb15387b92d8cb Mon Sep 17 00:00:00 2001 From: GomathiselviS Date: Wed, 5 Nov 2025 12:03:41 -0800 Subject: [PATCH 2/4] DNM: Testing new secret --- roles/connectivity_troubleshooter_validate/tasks/main.yml | 1 + 1 file changed, 1 insertion(+) diff --git a/roles/connectivity_troubleshooter_validate/tasks/main.yml b/roles/connectivity_troubleshooter_validate/tasks/main.yml index 2094a2b..4ec8bb5 100644 --- a/roles/connectivity_troubleshooter_validate/tasks/main.yml +++ b/roles/connectivity_troubleshooter_validate/tasks/main.yml @@ -1,5 +1,6 @@ --- # tasks file for roles/connectivity_troubleshooter_validate +# test - name: Run 'cloud.aws_troubleshooting.connectivity_troubleshooter_validate' role block: From ba17065192caa81eddfcc5d948940d5a6f1a8335 Mon Sep 17 00:00:00 2001 From: GomathiselviS Date: Wed, 5 Nov 2025 12:06:26 -0800 Subject: [PATCH 3/4] DNM: Testing new secret --- roles/connectivity_troubleshooter_validate/tasks/main.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/roles/connectivity_troubleshooter_validate/tasks/main.yml b/roles/connectivity_troubleshooter_validate/tasks/main.yml index 4ec8bb5..f464af1 100644 --- a/roles/connectivity_troubleshooter_validate/tasks/main.yml +++ b/roles/connectivity_troubleshooter_validate/tasks/main.yml @@ -7,7 +7,7 @@ - name: Fail when the IPv4 address of the resource you want to connect is not defined ansible.builtin.fail: msg: The IPv4 address of the resource you want to connect to must be defined as connectivity_troubleshooter_validate_destination_ip - when: connectivity_troubleshooter_validate_destination_ip is not defined + when: connectivity_troubleshooter_validate_destination_ip is defined - name: Fail when the port number you want to connect to on the destination resource is not defined ansible.builtin.fail: From c7a781144338a8ed69c7004b9368671c381a701f Mon Sep 17 00:00:00 2001 From: GomathiselviS Date: Wed, 5 Nov 2025 13:03:48 -0800 Subject: [PATCH 4/4] DNM: Testing new secret --- .../test_connectivity_troubleshooter/tasks/setup_classic.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/targets/test_connectivity_troubleshooter/tasks/setup_classic.yml b/tests/integration/targets/test_connectivity_troubleshooter/tasks/setup_classic.yml index 4fb019e..a2682d9 100644 --- a/tests/integration/targets/test_connectivity_troubleshooter/tasks/setup_classic.yml +++ b/tests/integration/targets/test_connectivity_troubleshooter/tasks/setup_classic.yml @@ -141,7 +141,7 @@ Name: "{{ instance_name }}-1" register: __create_ec2_instance_1 - - name: Deploy EC2 instance 2 + - name: Deploy EC2 instance no 2 amazon.aws.ec2_instance: instance_type: t2.micro image_id: "{{ image_id }}"