diff --git a/lib/chef/knife/mixin/helper.rb b/lib/chef/knife/mixin/helper.rb index dbde8e7..daec93c 100644 --- a/lib/chef/knife/mixin/helper.rb +++ b/lib/chef/knife/mixin/helper.rb @@ -62,7 +62,8 @@ def check_value(value, parent_key = nil) value.each { |item| check_value(item, parent_key) } elsif value.is_a?(Hash) value.each do |key, nested_value| - next if key == 'password' # Skip the password key + next if key == "password" # Skip the password key + check_value(nested_value, key) end else