Jon Beilke

Results 10 comments of Jon Beilke

Came up with a workaround for now by wrapping the chalice.tf.json with some additional Terraform that can grab the stage-name and generate an ARN for the APIGW stage ie. `"${aws_api_gateway_rest_api.rest_api.arn}/stages/${aws_api_gateway_deployment.rest_api.stage_name}"`

Took a shot at trying to implement a new `waf_acl_arn` config option, but ran into some complications in trying to handle the different Chalice deployment methods and lack of support...

Came up with a workaround for now wrapping the chalice.tf.json with some additional Terraform that can reference the APIGW resources from Chalice ie. ```terraform resource "aws_wafv2_web_acl_association" "api" { resource_arn =...

Takes a few steps, but I was able to figure out debugging with the following process: 1. clone the awx-operator repo 2. create run.yml playbook per debugging doc 3. create...

Cluster Types is a possibility, but exponentially increases the number of Clusters needed to track Site + Tenant + Group and now Type of Virtual Machine. This will also be...

> But your use case > > > and would like to track the EC2 instance type > > specifically entails clusters. I think it's fair to require users who...

Same problem for me ``` $ asdf install R 3.5.3 ... checking for BZ2_bzlibVersion in -lbz2... yes checking bzlib.h usability... yes checking bzlib.h presence... yes checking for bzlib.h... yes checking...

Added "extra_arguments" documentation to the README with example of usage in #5 Still need to cover "attrs", "controls", "json_config", "profiles_path", "reporter", and "user" parameters.

Yep, InSpec also provides the `--no-distinct-exit` to simply return 0 or 1 on test success and failure instead of the additional error codes. Might need to add a note about...

This looks good, but why the switch to a single string for attrs when inspec supports passing multiple attributes files at a time?