Ryan Scott Brown

Results 21 issues of Ryan Scott Brown

The X-Ray section of the DevOps workshop fails intermittently. This is because there's no direct dependency on the IAM update and the `AWS::Serverless::Function` tracing setting. This means that sometimes Lambdas...

For scripting use cases where I've got a CI system that I want to raise a status for different changeset states. Example: ``` formica change -c dev-env.config.yml STATE=$(aws cloudformation describe-change-set...

Related to #2249 - adds tcp_keepalive as an environment variable via the new `config_store` way of handling variables.

The S3 event source causes any "update_event_sources" command to fail because it's missing a method. ``` Traceback (most recent call last): File "/home/ryansb/.pyenv/versions/hugo-lambda/bin/kappa", line 155, in cli(obj={}) File "/home/ryansb/.pyenv/versions/hugo-lambda/lib/python2.7/site-packages/click/core.py", line...

type: bug

After using awsume for a little while on a new machine, I found a bit over 2GB of logs from autoawsume in `~/.awsume/logs/`. It makes sense to have logs for...

Node 8 and earlier work fine, but on node v10 and v12 the CLI hangs permanently, never returning a graph.

Example: ``` StateMachine: Type: AWS::StepFunctions::StateMachine Properties: StateMachineName: !Sub '${AWS::StackName}-StateMachine' DefinitionString: StartAt: FindKeysQuery States: FindKeysQuery: Type: Pass Next: Success ResultPath: $.query Result: !Sub | SELECT DISTINCT "$path" FROM "${LogsDatabase}"."${SourceTable}" WHERE from_unixtime(timestamp/1000)...

In the tests you use the JSON type, while for a "real" environment that was performance-sensitive it's likely that JSONB would be used instead. Optionally, you could also add a...

This PR is an alternative solution to #433, allowing persistent configuration to allow CORS access. #1357 adds a GUI popup to handle the allow process. Instead, this PR adds a...

Using `https://api.github.com/users/{SOMEONE}/repos` endpoint does not seem to return private repos for an organization. In this PR, I added a `--org` option to match the one on the pull-requests command and...