Brian Scholer
Brian Scholer
There is another alternative, which is to connect to the domain controller with PSRP (PowerShell Remoting Protocol) instead of over pure WinRM + launch powershell.exe. This would allow one to...
I think it will be difficult for exactly the reason you pointed out: there are many possibilities, and because the word list itself is in kana, there is no specific...
I believe that this is because `synchronize` uses an action plugin, and that's where the variable is retrieved, and it ends up being an instance of this issue: - https://github.com/ansible/ansible/issues/73268...
This is still an issue. I would like to use my profiles in the AWS config file, and they use `source_profile` with `credential_process`. I would be especially great if Vault...
so cool to see work on this again, it's going to be great 🙌
> BTW: the cgroups instructions recommend to run `chown -R {user}.{group} /sys/fs/cgroup/systemd`; shouldn't it be `chown -R {user}:{group} /sys/fs/cgroup/systemd`, with `:` instead of `.` between user and group? I thought...
Hi @jshively37 we're discussing options for adding more direct support for retries in `hvac` , but in the meantime you can achieve this today by creating the `requests.Session` yourself, and...
Yeah the nice thing here is that you don't have to move everything to making requests yourself with the `requests` library, they only need to pass that session to `hvac`...
@jshively37 oh! there's one thing that might be important and not so obvious: set `raise_on_status=False` when constructing the `Retry` class. The reason is that if you don't, `Retry` will raise...
I really like this proposal. The differences between `$null` and "nothing" confound users who inevitably run into it, and the ones who are curious enough to try to understand why...