summaryrefslogtreecommitdiff
path: root/lib/chef/resource/subversion.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef/resource/subversion.rb')
-rw-r--r--lib/chef/resource/subversion.rb7
1 files changed, 7 insertions, 0 deletions
diff --git a/lib/chef/resource/subversion.rb b/lib/chef/resource/subversion.rb
index d67fd22834..adf8244668 100644
--- a/lib/chef/resource/subversion.rb
+++ b/lib/chef/resource/subversion.rb
@@ -39,6 +39,13 @@ class Chef
property :svn_binary, String,
description: "The location of the svn binary."
+ property :svn_username, String,
+ description: "The username to use for interacting with subversion."
+
+ property :svn_password, String,
+ description: "The password to use for interacting with subversion.",
+ sensitive: true, desired_state: false
+
# Override exception to strip password if any, so it won't appear in logs and different Chef notifications
def custom_exception_message(e)
"#{self} (#{defined_at}) had an error: #{e.class.name}: #{svn_password ? e.message.gsub(svn_password, "[hidden_password]") : e.message}"