James Sinclair
James Sinclair
I just ran into the same issue. It'd be really awesome if this were merged so I didn't have to resort to the hack of concatenating all my data files...
Setting `SESSION_USE_SIGNER` to `True` may defend against some attacks, but it doesn't defend against session fixation attacks. As an attacker, I can do my own request to the app to...
I use [jq](https://stedolan.github.io/jq/) for situations where I need this. You can this to your `~/.jq` file: ```jq def aws_vault_vars: ( "export AWS_ACCESS_KEY_ID=\(.AccessKeyId)\n" + "export AWS_SECRET_ACCESS_KEY=\(.SecretAccessKey)\n" + "export AWS_SESSION_TOKEN=\(.SessionToken)\n" + "export...
In the output of `aws-vault exec --help` it says: ``` usage: aws-vault exec [] [] [...] ... ... Args: Name of the profile [] Command to execute, defaults to $SHELL...
> So it seems like for it to work in PowerShell we'd need to first declare a $SHELL env var. You don't _need_ `$SHELL` defined in your environment, you just...
The simple fix for this is to create multiple aliases--one for each profile. Assuming you have two profile, `work` and `home`, for instance, you'd do something like this: ```bash alias...
Another (possibly simpler) method for sharing a rate limit between multiple functions or methods might look like this: ```python @limits(calls=200, period=60) def api_limit(): pass def func1(): api_limit() # API Call...
I haven't dug deep enough to create a PR for this, but it looks like a fairly minimal change to enable the shared config by default. When you're building an...
I do this by pre-processing my files with [jq](https://stedolan.github.io/jq/). Give the following: flatten.json: ``` [ { "a": { "b": 1, "c": 2 } }, { "a": { "b": 3, "c":...
I think we've run into the same bug while evaluating LocalStack Pro. Unfortunately it's a show-stopper for us as we use nested stacks extensively and outputs and parameters are how...