mirror of
https://github.com/ghndrx/prowler.git
synced 2026-02-11 07:15:15 +00:00
* chore(csv): first version csv output * chore(pytest): added pytest dependency * chore(outputs): organizations demo * chore(compliance): Added new dataclass for each compliance framework * fix(test org values): deleted test values in orgs instantiation * fix(csv): formatted to match output format * fix(csv output): Reformulation of check report and minor changes * fix(minor issues): Fix various issues coming from PR comments * fix(csv): Renamed csv output data model * fix(output dir): create default if not present * fix(typo): remove s * fix(oldcode) * fix(typo) * fix(output): Only send to csv when -M is passed Co-authored-by: sergargar <sergio@verica.io> Co-authored-by: Pepe Fagoaga <pepe@verica.io>
17 lines
365 B
Python
17 lines
365 B
Python
from datetime import datetime
|
|
from os import getcwd
|
|
|
|
timestamp = datetime.today()
|
|
prowler_version = "3.0-alfa"
|
|
|
|
# Groups
|
|
groups_file = "groups.json"
|
|
|
|
# AWS services-regions matrix json
|
|
aws_services_json_file = "providers/aws/aws_regions_services.json"
|
|
|
|
default_output_directory = getcwd() + "/output"
|
|
|
|
csv_file_suffix = timestamp.strftime("%Y%m%d%H%M%S") + ".csv"
|
|
|