Syntax
A google_kms_crypto_keys
is used to test a Google CryptoKey resource
Examples
describe google_kms_crypto_keys(project: 'chef-gcp-inspec', location: 'europe-west2', key_ring_name: 'kms-key-ring') do
its('count') { should be >= 1 }
its('crypto_key_names') { should include 'kms-key' }
end
Test that there are no more than a specified number of keys in the key ring
describe google_kms_crypto_keys(project: 'chef-inspec-gcp', location: 'us-east1', key_ring_name: 'key-ring') do
its('count') { should be <= 100}
end
Test that an expected key name is present in the key ring
describe google_kms_crypto_keys(project: 'chef-inspec-gcp', location: 'us-east1', key_ring_name: 'key-ring') do
its('crypto_key_names') { should include "my-crypto-key-name" }
end
Properties
Properties that can be accessed from the google_kms_crypto_keys
resource:
See googlekmscrypto_key.md for more detailed information
* crypto_key_names
: an array of google_kms_crypto_key
cryptokeyname
* create_times
: an array of google_kms_crypto_key
createtime
* labels
: an array of `googlekmscryptokeylabels
*
purposes: an array of
googlekmscryptokeypurpose
*
rotationperiods: an array of
googlekmscryptokey` rotationperiod
* version_templates
: an array of google_kms_crypto_key
versiontemplate
* `nextrotationtimes: an array of
googlekmscryptokeynext_rotation_time
*
keyrings: an array of
googlekmscryptokey` key_ring
Filter Criteria
This resource supports all of the above properties as filter criteria, which can be used
with where
as a block or a method.
GCP Permissions
Ensure the Cloud Key Management Service (KMS) API is enabled for the current project.