You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The cookbook automatically handles escaping of special characters (`$`) in SCRAM-SHA-256 passwords. You don't need to manually escape these characters - the cookbook will handle this transparently.
42
45
43
46
**Before (manual escaping required):**
47
+
44
48
```ruby
45
49
postgresql_role 'user1'do
46
50
# Manual escaping was required
@@ -50,6 +54,7 @@ end
50
54
```
51
55
52
56
**Now (automatic escaping):**
57
+
53
58
```ruby
54
59
postgresql_role 'user1'do
55
60
# No manual escaping needed
@@ -195,4 +200,4 @@ WHERE rolname = 'your_username';
0 commit comments