Skip to content
This repository has been archived by the owner on Nov 14, 2024. It is now read-only.

Commit

Permalink
Merge remote-tracking branch 'gcp/master'
Browse files Browse the repository at this point in the history
  • Loading branch information
slevenick committed Oct 28, 2019
2 parents e046d0b + 901d152 commit 631b895
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 5 deletions.
14 changes: 12 additions & 2 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,10 +1,20 @@
# Change Log
<!-- latest_release 0.16.2 -->
<!-- latest_release 0.17.1 -->
## [v0.17.1](https://github.com/inspec/inspec-gcp/tree/v0.17.1) (2019-10-28)

#### Merged Pull Requests
- Rubocop update [#195](https://github.com/inspec/inspec-gcp/pull/195) ([slevenick](https://github.com/slevenick))
<!-- latest_release -->

## [v0.17.0](https://github.com/inspec/inspec-gcp/tree/v0.17.0) (2019-10-23)

#### Merged Pull Requests
- Add google_compute_router_nat [#190](https://github.com/inspec/inspec-gcp/pull/190) ([slevenick](https://github.com/slevenick))

## [v0.16.2](https://github.com/inspec/inspec-gcp/tree/v0.16.2) (2019-10-23)

#### Merged Pull Requests
- Update check on DNSSEC to be case independent after API update from &#39;[#188](https://github.com/inspec/inspec-gcp/pull/188) ([skpaterson](https://github.com/skpaterson))
<!-- latest_release -->

## [v0.16.1](https://github.com/inspec/inspec-gcp/tree/v0.16.1) (2019-10-14)

Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.16.2
0.17.1
2 changes: 1 addition & 1 deletion inspec.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ maintainer: spaterson@chef.io,russell.seymour@turtlesystems.co.uk
summary: This resource pack provides compliance resources_old_ignore for Google Cloud Platform
copyright: spaterson@chef.io,russell.seymour@turtlesystems.co.uk
copyright_email: spaterson@chef.io,russell.seymour@turtlesystems.co.uk
version: 0.16.2
version: 0.17.1
license: Apache-2.0
inspec_version: '>= 4.7.3'
supports:
Expand Down
2 changes: 1 addition & 1 deletion libraries/google_dns_managed_zones.rb
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def fetch_data
@managed_zones.managed_zones.map do |zone|
dns_enabled=false
if defined?(zone.dnssec_config.state)
dns_enabled=true if zone.dnssec_config.state.downcase == 'on'
dns_enabled=true if zone.dnssec_config.state.casecmp('on').zero?
end
managed_zones+=[{ zone_id: zone.id,
zone_name: zone.name,
Expand Down

0 comments on commit 631b895

Please sign in to comment.