From 030ca3a0d7344968402e93839d75d73bec42739a Mon Sep 17 00:00:00 2001 From: ssindhub <172330480+ssindhub@users.noreply.github.com> Date: Fri, 5 Dec 2025 11:49:14 -0800 Subject: [PATCH 1/2] Modify connection string in LS-Storage.json Updated the connection string in LS-Storage.json to remove the account key for security reasons. --- .../sampledatasets/V2/LinkedService/LS-Storage.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/V1-V2Migration/sampledatasets/V2/LinkedService/LS-Storage.json b/V1-V2Migration/sampledatasets/V2/LinkedService/LS-Storage.json index 7a6fd51a..ec94cc07 100644 --- a/V1-V2Migration/sampledatasets/V2/LinkedService/LS-Storage.json +++ b/V1-V2Migration/sampledatasets/V2/LinkedService/LS-Storage.json @@ -6,8 +6,8 @@ "typeProperties": { "connectionString": { "type": "SecureString", - "value": "DefaultEndpointsProtocol=https;AccountName=abc;AccountKey=Rand7i8g58dRTZxKL+7ySf4oeUMwGQghP6w2vJpmGK5OsowW8DRrVsRQm1wXGu8Hhuv5EGpjWcGclAxSVdHycg==" + "value": "DefaultEndpointsProtocol=https;AccountName=abc; } } } -} \ No newline at end of file +} From 2a4649954543f21c676c27a5837a9e4645410bfb Mon Sep 17 00:00:00 2001 From: ssindhub <172330480+ssindhub@users.noreply.github.com> Date: Mon, 8 Dec 2025 19:13:56 -0800 Subject: [PATCH 2/2] Fix connection string format in LS-Storage.json Removed trailing semicolon from the connection string value. --- V1-V2Migration/sampledatasets/V2/LinkedService/LS-Storage.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/V1-V2Migration/sampledatasets/V2/LinkedService/LS-Storage.json b/V1-V2Migration/sampledatasets/V2/LinkedService/LS-Storage.json index ec94cc07..04574b04 100644 --- a/V1-V2Migration/sampledatasets/V2/LinkedService/LS-Storage.json +++ b/V1-V2Migration/sampledatasets/V2/LinkedService/LS-Storage.json @@ -6,7 +6,7 @@ "typeProperties": { "connectionString": { "type": "SecureString", - "value": "DefaultEndpointsProtocol=https;AccountName=abc; + "value": "DefaultEndpointsProtocol=https;AccountName=abc" } } }