feat(regions_update): Changes in regions for AWS services. (#1508)

This commit is contained in:
github-actions[bot]
2022-11-23 15:11:22 +01:00
committed by GitHub
parent 989638a42d
commit 1a70a45805
36 changed files with 354 additions and 214 deletions

View File

@@ -27,7 +27,7 @@ class Test_config_recorder_all_regions_enabled:
result = check.execute()
assert (
len(result) == 23
len(result) == 25
) # One fail result per region, since there are no recorders
assert result[0].status == "FAIL"
@@ -55,7 +55,7 @@ class Test_config_recorder_all_regions_enabled:
check = config_recorder_all_regions_enabled()
result = check.execute()
assert len(result) == 23
assert len(result) == 25
# Search for the recorder just created
for recorder in result:
if recorder.resource_id:
@@ -95,7 +95,7 @@ class Test_config_recorder_all_regions_enabled:
check = config_recorder_all_regions_enabled()
result = check.execute()
assert len(result) == 23
assert len(result) == 25
# Search for the recorder just created
for recorder in result:
if recorder.resource_id:

View File

@@ -81,7 +81,7 @@ class Test_Config_Service:
audit_info = self.set_mocked_audit_info()
config = Config(audit_info)
# One recorder per region
assert len(config.recorders) == 23
assert len(config.recorders) == 25
# Check the active one
# Search for the recorder just created
for recorder in config.recorders: