Sam Levenick

Results 126 comments of Sam Levenick

I'm unable to find this info on the managed zone object that is returned by the API client. I'd guess that this client is out of date, similar to https://github.com/inspec/inspec-gcp/issues/202

This should be available in the v1 version of the api, as it appears in the v1 version of the object that comes back from the REST call: https://cloud.google.com/dns/docs/reference/v1/managedZones#resource

Are you able to reproduce the same issue in the 1.0 release of inspec-gcp? I believe this was an issue with versioning on the API clients, which are no longer...

Looks like a relatively normal API: https://cloud.google.com/compute/docs/reference/rest/v1/securityPolicies/get It shouldn't be too hard for me to add support for this once https://github.com/inspec/inspec-gcp/pull/226 goes in. I'd guess 1-2 weeks after that gets...

https://github.com/GoogleCloudPlatform/magic-modules/pull/3372 addresses this. Expected soon

This will be done via https://github.com/GoogleCloudPlatform/magic-modules/pull/4444

Fixed via https://github.com/inspec/inspec-gcp/pull/259

I believe that these methods do work if the instance exists. Are you able to throw in a `it { should exist }` assertion before calling those? We use these...

Loop through the `network_interfaces` array and check that `access_configs` is always empty? ``` this_instance.network_interfaces.each do |network_interface| describe network_interface do its('size') { should cmp 0 } end end ```

Errr, try `its('count')` I mixed up my ruby methods