James Stocks

Results 31 comments of James Stocks

Yes at the moment InSpec needs the target URL to end with `.git`. Is `https://github.mycompany.com/path/to/my/profile.tar.gz` a tar file committed to git; or is it a release available for download from...

Would the desired code be ``` only_if('Host not a Kubernetes master node: Control not applicable', adjusted_impact: 0.0) do processes(apiserver).exists? end ``` ? Possibly the impact could just automatically be 0.0...

It would be nice for the `YAML` resource to provide a diff. Two possible things to do are use the `match_array` matcher: ``` inspec> my_data = { a: 4, animals:...

This is an awesome idea. I put the `Continuous Delivery` label on this to try to express that this is to give us benchmarking for our own dev/test/release and that...

One possible plan is to have expeditor run a job that does a couple of small invocations of InSpec e.g. `inspec --version` and `inspec exec test/fixture/profile/...` then send details of...

Yes please, the ask here is to collect some rough data _now_ without being gated by the completion of telemetry. As discussed I believe we just need RelEng's advice on...

I was discussing this with @skpaterson yesterday - the most common pitfall when trying to skip/exclude controls is that InSpec has to evaluate the source code you give it. Frequently...

The most common pitfall here is that users put Ruby in their InSpec control source code. By the nature of how InSpec works, that Ruby code will be evaluated at...

This is still desirable. I think generally it's best practice to write controls that are simple and do not require this amount of complexity of logic; but when implementing compliance...

Closed https://github.com/inspec/inspec/issues/3199 which was a specific case we have a need for: There are 4 resources that need tested, `A B C` and `D`, and the pass/fail boolean logic is...