summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2021-07-13 15:40:25 -0700
committerJohn McCrae <john.mccrae@progress.com>2021-07-16 15:38:16 -0700
commit97f1fe172aae42be6d862fea5b28edbb01942c94 (patch)
tree74ddf6ffa8c4e666b2b48645a71841274a43b931
parent6a6b93cfe5d7cc3b90e61c0ac2535b62842701a3 (diff)
downloadchef-97f1fe172aae42be6d862fea5b28edbb01942c94.tar.gz
Minor formatting update in docs
Signed-off-by: Tim Smith <tsmith@chef.io>
-rw-r--r--lib/chef/resource/chef_vault_secret.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/chef/resource/chef_vault_secret.rb b/lib/chef/resource/chef_vault_secret.rb
index 80e3f0f471..5f535a95f8 100644
--- a/lib/chef/resource/chef_vault_secret.rb
+++ b/lib/chef/resource/chef_vault_secret.rb
@@ -33,7 +33,7 @@ class Chef
```ruby
chef_vault_secret 'foo' do
data_bag 'bar'
- raw_data({'auth' => 'baz'})
+ raw_data({ 'auth' => 'baz' })
admins 'jtimberman'
search '*:*'
end
@@ -45,7 +45,7 @@ class Chef
chef_vault_secret 'root-password' do
admins 'jtimberman,paulmooring'
data_bag 'secrets'
- raw_data({'auth' => 'DoNotUseThisPasswordForRoot'})
+ raw_data({ 'auth' => 'DoNotUseThisPasswordForRoot' })
search '*:*'
end
```