AWS AmazonRDS documentation change
Summary
Fixed SQL syntax in login creation examples (added quotes and removed brackets)
Security assessment
Corrects documentation examples but doesn't address security vulnerabilities or add security content. Prevents potential misconfiguration errors.
Diff
diff --git a/AmazonRDS/latest/UserGuide/SQLServer.ReadReplicas.ObjectSynchronization.md b/AmazonRDS/latest/UserGuide/SQLServer.ReadReplicas.ObjectSynchronization.md index 218fe0fb2..853e68ee7 100644 --- a//AmazonRDS/latest/UserGuide/SQLServer.ReadReplicas.ObjectSynchronization.md +++ b//AmazonRDS/latest/UserGuide/SQLServer.ReadReplicas.ObjectSynchronization.md @@ -37 +37 @@ Specify a password other than the prompt shown here as a security best practice. - SELECT name, sid FROM sys.server_principals WHERE name = TestLogin1; + SELECT name, sid FROM sys.server_principals WHERE name = 'TestLogin1'; @@ -42 +42 @@ Specify a password other than the prompt shown here as a security best practice. - CREATE LOGIN TestLogin1 WITH PASSWORD = 'REPLACE WITH PASSWORD', SID=[REPLACE WITH sid FROM STEP #4]; + CREATE LOGIN TestLogin1 WITH PASSWORD = 'REPLACE WITH PASSWORD', SID=REPLACE WITH sid FROM STEP #4; @@ -62 +62 @@ Specify a password other than the prompt shown here as a security best practice. - CREATE LOGIN TestLogin1 WITH PASSWORD = 'REPLACE WITH PASSWORD', SID=[REPLACE WITH sid FROM STEP #2]; + CREATE LOGIN TestLogin1 WITH PASSWORD = 'REPLACE WITH PASSWORD', SID=REPLACE WITH sid FROM STEP #2; @@ -67 +67 @@ Example: - CREATE LOGIN TestLogin1 WITH PASSWORD = 'TestPa$$word#1', SID=[0x1A2B3C4D5E6F7G8H9I0J1K2L3M4N5O6P]; + CREATE LOGIN TestLogin1 WITH PASSWORD = 'TestPa$$word#1', SID=0x1A2B3C4D5E6F7G8H9I0J1K2L3M4N5O6P;