(tenants_fixture)
| 698 | |
| 699 | @pytest.fixture |
| 700 | def processor_fixture(tenants_fixture): |
| 701 | tenant, *_ = tenants_fixture |
| 702 | processor = Processor.objects.create( |
| 703 | tenant_id=tenant.id, |
| 704 | processor_type="mutelist", |
| 705 | configuration="Mutelist:\n Accounts:\n *:\n Checks:\n iam_user_hardware_mfa_enabled:\n " |
| 706 | " Regions:\n - *\n Resources:\n - *", |
| 707 | ) |
| 708 | |
| 709 | return processor |
| 710 | |
| 711 | |
| 712 | @pytest.fixture |