Files
prowler/config/config.py
Sergio Garcia 7b9fae5605 feat(json): add json output (#1251)
* feat(json): add json output

* feat(pydantic): add pydantic model to json output

Co-authored-by: sergargar <sergio@verica.io>
2022-07-06 14:35:15 +02:00

17 lines
430 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_by_service.json"
default_output_directory = getcwd() + "/output"
csv_file_suffix = timestamp.strftime("%Y%m%d%H%M%S") + ".csv"
json_file_suffix = timestamp.strftime("%Y%m%d%H%M%S") + ".json"