Skip to content

Commit

Permalink
SQL Server password complexity modified for requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
Jon Wihl authored and Jon Wihl committed Oct 25, 2023
1 parent 1753f17 commit 9e2564b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ USE <database>;
-- Enable CDC for the database.
EXEC msdb.dbo.gcloudsql_cdc_enable_db '<database>';
-- Create user and password for use with the connector.
CREATE LOGIN flow_capture WITH PASSWORD = 'secret';
CREATE LOGIN flow_capture WITH PASSWORD = 'Secret123!';
CREATE USER flow_capture FOR LOGIN flow_capture;
-- Grant the user permissions on the CDC schema and schemas with data.
-- This assumes all tables to be captured are in the default schema, `dbo`.
Expand Down

0 comments on commit 9e2564b

Please sign in to comment.