Gregor Riepl
Gregor Riepl
> in a for loop, changing the `args.output_format` parameter with some form of list that's passed as an argument work? Maybe `args.output_format` could always be treated as a comma separated...
Isn't this actually the opposite problem? Severity levels are perfectly useful, and it's quite annoying that all findings are reported as Errors. Why does Chekov not reproduce the severity defined...
The same applies to network reservations: A common use case is to reserve the next available network in a container. According to the documentation, the Infoblox WAPI supports atomic operations,...
If you're working on a Linux system, there is a way to run cross-architecture containers - user-mode QEMU is your friend. Instructions for Debian+Podman: ```shell apt install qemu-user-static podman #...
You can actually call this function on the container object, there's no need to use `call_func`: ```python cont = objects.NetworkContainer.search(....) nxt = cont.next_available_network(payload={"cidr":netmask}) net = nxt['networks'][0] ```
Interesting. I assumed that the language-specific libraries were all 100% transpiled and didn't require pulling in another language ecosystem (which I'd like to avoid if possible). It's clear that the...
Thanks for this suggestion, I can see that this is now the preferred approach. The kiota README even says that Microsoft has deliberately decided not to release separate modules for...
One option that may or may not work is running [python-minifier](https://dflook.github.io/python-minifier/command_usage.html) on all your dependencies before you deploy them. There's also https://pyminifier3.readthedocs.io/en/latest/
AWS also provides guidance, including a CloudFormation template based on the recommended integration method: https://docs.aws.amazon.com/prescriptive-guidance/latest/patterns/ingest-analyze-aws-security-logs-sentinel.html I think it's easier to understand and follow.