mirror of
https://github.com/ghndrx/prowler.git
synced 2026-02-10 14:55:00 +00:00
* feat(organizations): add organizations funtion to provider * feat(organizations): add organizations -O option * fix(comments): Resolve comments. * feat(test): add test * fix(pipfile): update pipfile Co-authored-by: sergargar <sergio@verica.io>
16 lines
366 B
Python
16 lines
366 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"
|