diff --git a/src/Umbraco.Core/Configuration/Models/SecuritySettings.cs b/src/Umbraco.Core/Configuration/Models/SecuritySettings.cs
index eca2501a63..d002cc2111 100644
--- a/src/Umbraco.Core/Configuration/Models/SecuritySettings.cs
+++ b/src/Umbraco.Core/Configuration/Models/SecuritySettings.cs
@@ -68,11 +68,13 @@ public class SecuritySettings
///
/// Gets or sets a value for the user password settings.
///
+ [Obsolete("This no longer works. You can now inject this by using IOptions instead, scheduled for removal in v13")]
public UserPasswordConfigurationSettings? UserPassword { get; set; }
///
/// Gets or sets a value for the member password settings.
///
+ [Obsolete("This no longer works. You can now inject this by using IOptions instead, scheduled for removal in v13")]
public MemberPasswordConfigurationSettings? MemberPassword { get; set; }
///