rafcio19
8178cbde1a
EC2: SG rule tagging ( #7424 )
2024-03-05 13:08:13 -01:00
Bert Blommers
a7f3b367b4
Introduce mock_aws() ( #7194 )
2024-01-27 19:38:09 +00:00
Viren Nadkarni
624de34d82
EC2: Add tag support for security group rules ( #7204 )
2024-01-13 11:54:51 -01:00
tungol
55c589072f
Admin: sorting imports with ruff ( #7075 )
2023-11-30 14:55:51 -01:00
Bert Blommers
79bd7c5bae
Techdebt: Replace sure with regular assertions in EC2 ( #6525 )
2023-07-17 09:31:05 +00:00
David
3f528f5428
EC2: add GroupId to SecurityGroupRules ( #6437 )
2023-06-29 09:07:52 +00:00
Josh Kropf
dc460a3258
EC2: Fix egress rules used in ingress revoke method ( #6180 )
2023-04-06 18:59:18 +00:00
Bert Blommers
0d7cec26b7
EC2: Revoke rules without specifying IPProtocol ( #6057 )
2023-03-12 15:52:15 -01:00
CiolFr
25f0c660f7
EC2: describe_security_group_rules now uses Filter-argument ( #6041 )
2023-03-11 22:28:16 -01:00
Bert Blommers
78840fd71c
EC2: Simplify DryRun-handling ( #5926 )
2023-02-14 12:43:28 -01:00
Uzair Ali
ba78420314
Feature describe_security_group_rules
for ec2
( #5841 )
2023-01-17 18:34:41 -01:00
Bert Blommers
1a8ddc0f2b
Techdebt: Replace string-format with f-strings (for tests dirs) ( #5678 )
2022-11-17 21:41:08 -01:00
Bert Blommers
3d913f8f15
MultiAccount support ( #5192 )
2022-08-13 09:49:43 +00:00
Bert Blommers
10bd677cf2
Admin - enable more Pylint rules ( #5037 )
2022-04-18 20:44:56 +00:00
Bert Blommers
43b987427f
Refactor EC2 models into separate files ( #5003 )
2022-04-04 17:51:11 +00:00
Bert Blommers
29d01c35bc
Update Black + formatting ( #4926 )
2022-03-10 13:39:59 -01:00
Bert Blommers
aa70ee254d
Remove deprecated decorators + boto dependency ( #4378 )
2022-01-18 14:18:57 -01:00
James Light
f4abd5528f
Fix security group filters 2 ( #4481 )
2021-11-16 11:24:14 -01:00
Bert Blommers
14a69c7524
Techdebt: Enable pylint rules ( #4432 )
2021-10-18 19:44:29 +00:00
Bert Blommers
b49ee71a55
Parallel tests - make EC2 SG tests more resistant to parallel tests ( #4372 )
2021-10-05 20:40:21 +00:00
Bert Blommers
8526013e61
Parallelize tests - Part 1 ( #4368 )
2021-10-05 17:11:07 +00:00
James Light
73b7fcce26
Fix security group filters ( #4079 )
2021-09-30 15:28:13 +00:00
Bert Blommers
939b800e96
Rewrite deprecated EC2 tests ( #3881 )
2021-09-25 11:13:07 +00:00
Bert Blommers
a147eeac67
EC2 - Additional unit tests ( #4291 )
2021-09-15 21:07:04 +00:00
Mohit Alonja
eef21767f8
Fix SecuirtyGroupRules and added default Ec2-VPC support for SG. ( #4267 )
2021-09-09 13:39:48 +01:00
Bert Blommers
4e7153c655
EC2 - DryRun-requests should return 412 status code ( #4270 )
2021-09-07 17:10:01 +01:00
Mohit Alonja
2f26e870b8
SecurityGroup Improvements ( #4239 )
2021-09-04 17:08:18 +01:00
Mohit Alonja
11a37c357b
SecurityGroup Improvements ( #4183 )
2021-08-26 19:57:07 +01:00
Bert Blommers
574053cb27
EC2 - Improve/Extend RouteTable unit tests ( #4165 )
2021-08-11 18:50:15 +01:00
Brian Pandola
463472c2b2
Make security rules consistent between direct (backend) and indirect (api) boundaries ( #3817 )
...
* Make security rules consistent between direct (backend) and indirect (api) boundaries
Security rules added directly via the backend were unable to be revoked via the API
because the port values were being stored as strings but were always coerced back
to integers by the botocore model. `"0" != 0`, so the rules would never match,
raising an `InvalidPermissionNotFoundError`.
This change ensures that the port values for a security group rule are always of type
`Union[int, None]`.
No tests needed to be modified as a result of this change. A new test was added that
explicitly covers the behavior that had been failing.
* Skip test in server mode
2021-03-31 19:33:36 +01:00
Brian Pandola
1761be46e3
Return error when trying to add rules to a non-existent security group ( #3802 )
...
Behavior and error code/message confirmed against real AWS backend.
2021-03-26 13:00:51 +00:00
Brian Pandola
2bae7e4e0d
Raise error when adding duplicate egress rule to ec2:SecurityGroup ( #3801 )
...
The `InvalidPermission.Duplicate` error was already implemented for inbound rules,
but AWS also returns this error for duplicate outbound rules.
Very minor changes were needed on existing tests that were adding duplicate
outbound rules (when testing the RulesPerSecurityGroupLimitExceeded error).
2021-03-26 11:23:07 +00:00
Bert Blommers
737636f9df
Tech debt ( #3653 )
2021-02-02 16:31:26 +00:00
Bert Blommers
0f32f3c50c
#3542 - CloudFormation - Fix SecurityGroup ingress rules ( #3553 )
2021-01-13 13:36:56 +00:00
Matěj Cepl
ea489bce6c
Finish porting from nose to pytest.
2020-11-10 08:25:05 +01:00
Matěj Cepl
77dc60ea97
Port test suite from nose to pytest.
...
This just eliminates all errors on the tests collection. Elimination of
failures is left to the next commit.
2020-11-10 08:23:44 +01:00
jmbollard
2a27e457bf
Security group egress ip permissions fix ( #3250 )
...
* Add support for Description in egress rule response
* Update SecurityGroup default egress rule ip range
* Remove extra commas
* Remove extra commas
* Lower docker package in Travis
* Add more lambda vars per PR 3247
* Remove code added in 3247
* Add tests for egress rules with Descriptions
* Reformat based on black
Co-authored-by: spillin <jmbollard@me.com>
2020-08-26 14:27:45 +01:00
usmangani1
a7ddcd7da3
Fix:EC2-authorize_security_group_ingress- add description to IP-Ranges ( #3196 )
...
* Fix:EC2-authorize_security_group_ingress- add description to IP-Ranges
* Fix:EC2-authorize_security_group_ingress- add test when description is not present.
* part commit
* Fix:fixed build errors
* Linting
* Allow for Python2 string/unicodes
Co-authored-by: usmankb <usman@krazybee.com>
Co-authored-by: Bert Blommers <info@bertblommers.nl>
2020-08-04 06:50:57 +01:00
aimannajjar
639c1abcb4
clarifying comment in test case
2020-03-01 08:23:31 -05:00
aimannajjar
5b9b965647
[ec2-sg] added logic to create a second default egress rule for ipv6
2020-02-29 21:05:05 -05:00
gruebel
5895231b5c
Fix ec2.revoke_security_group_egress for IpProtocol -1
2019-11-24 17:17:53 +01:00
Asher Foa
96e5b1993d
Run black on moto & test directories.
2019-10-31 10:36:05 -07:00
Bendegúz Ács
f408709ef9
VPC IPv4 validation ( #2026 )
...
* Implemented throwing invalid subnet range error and fixed breaking tests.
* Implemented throwing invalid CIDR block parameter error for vpcs and subnets.
* Implemented throwing invalid destination CIDR block error.
* IPv6 addresses not accepted, strict checking disabled.
* Implemented throwing invalid subnet conflict error and fixed breaking tests.
* Implemented throwing invalid VPC range error and fixed breaking tests.
* Fixed accidentally removed ).
* Fixed test case trying to create two subnets with the same CIDR range.
2019-05-25 18:35:07 +01:00
Steve Pulec
af8697c9a7
Fix security group rules for single rule case. Closes #1522 .
2018-04-13 15:03:07 -04:00
William Johansson
88fb732302
Support wildcard tag filters on SecurityGroups
2017-10-06 21:55:01 +02:00
Nuwan Goonasekera
298772ca92
Raise InvalidGroup.NotFound in DescribeSecurityGroups
2017-09-18 19:51:01 +05:30
Steve Pulec
f37bad0e00
Lints.
2017-02-23 21:37:43 -05:00
Steve Pulec
81836b6981
Get standalone server mode working for all tests.
2017-02-23 19:43:48 -05:00
Steve Pulec
fde721bed7
Testing new version of decorator.
2017-02-15 22:35:45 -05:00
David Wilcox
012dd497f2
make get_all_security_groups filter AND match group ids, not OR them ( #822 )
2017-02-08 21:29:37 -05:00