def read_config_values()

in src/SentinelUtilities/SentinelUtils/config_reader.py [0:0]


    def read_config_values(file_path):
        """ read configuration """
        with open(file_path) as json_file:
            if json_file:
                json_config = json.load(json_file)
                return (json_config["tenant_id"],
                        json_config["subscription_id"],
                        json_config["resource_group"],
                        json_config["workspace_id"],
                        json_config["workspace_name"])
        return None