Skip to content

Commit 32412cd

Browse files
authored
update CI CredScan task (Azure#1169)
* try pre value * relace test credentials by place holder * fix alignment * suppress link of sample package * update for ci credscan task
1 parent 002dd17 commit 32412cd

File tree

444 files changed

+891
-52213
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

444 files changed

+891
-52213
lines changed

.azure-pipelines/fluentNetSdk.yml

+1
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ jobs:
2121
displayName: 'Run Credential Scanner'
2222
inputs:
2323
toolMajorVersion: V2
24+
toolVersionV2: 'Latest'
2425
suppressionsFile: './tools/credscan/CredScanSuppressions.json'
2526

2627
- task: ms-codeanalysis.vss-microsoft-security-code-analysis-devops.build-task-postanalysis.PostAnalysis@1

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -110,6 +110,7 @@ ClientBin
110110
node_modules
111111
package-lock.json
112112
test_index
113+
.gdn
113114

114115
*.[Pp]ublish.xml
115116

AUTH.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -119,10 +119,10 @@ This format is still supported for backward compatibility at least until 2.0 rel
119119

120120
```json
121121
{
122-
"clientId": "b52dd125-9272-4b21-9862-0be667bdf6dc",
123-
"clientSecret": "ebc6e170-72b2-4b6f-9de2-99410964d2d0",
124-
"subscriptionId": "ffa52f27-be12-4cad-b1ea-c2c241b6cceb",
125-
"tenantId": "72f988bf-86f1-41af-91ab-2d7cd011db47",
122+
"clientId": "00000000-0000-0000-0000-000000000000",
123+
"clientSecret": "00000000-0000-0000-0000-000000000000",
124+
"subscriptionId": "00000000-0000-0000-0000-000000000000",
125+
"tenantId": "00000000-0000-0000-0000-000000000000",
126126
"activeDirectoryEndpointUrl": "https://login.microsoftonline.com",
127127
"resourceManagerEndpointUrl": "https://management.azure.com/",
128128
"activeDirectoryGraphResourceId": "https://graph.windows.net/",

Samples/AppService/ManageFunctionAppWithDomainSsl.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace ManageFunctionAppWithDomainSsl
1414
{
1515
public class Program
1616
{
17-
private const string CertificatePassword = "StrongPass!12";
17+
private static readonly string CertificatePassword = Utilities.CreatePassword();
1818

1919
/**
2020
* Azure App Service sample for managing function apps.
@@ -32,7 +32,7 @@ public static void RunSample(IAzure azure)
3232
string app2Name = SdkContext.RandomResourceName("webapp2-", 20);
3333
string rgName = SdkContext.RandomResourceName("rgNEMV_", 24);
3434
string domainName = SdkContext.RandomResourceName("jsdkdemo-", 20) + ".com";
35-
string certPassword = "StrongPass!12";
35+
string certPassword = Utilities.CreatePassword();
3636

3737
try {
3838
//============================================================

Samples/AppService/ManageLinuxWebAppSqlConnection.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ public class Program
1515
{
1616
private const string Suffix = ".azurewebsites.net";
1717
private const string Admin = "jsdkadmin";
18-
private const string Password = "StrongPass!123";
18+
private static readonly string Password = Utilities.CreatePassword();
1919

2020
/**
2121
* Azure App Service basic sample for managing web apps.

Samples/AppService/ManageLinuxWebAppWithDomainSsl.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace ManageLinuxWebAppWithDomainSsl
1414
{
1515
public class Program
1616
{
17-
private const string CertificatePassword = "StrongPass!12";
17+
private static readonly string CertificatePassword = Utilities.CreatePassword();
1818

1919
/**
2020
* Azure App Service sample for managing web apps.

Samples/AppService/ManageLinuxWebAppWithTrafficManager.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ namespace ManageLinuxWebAppWithTrafficManager
2828

2929
public class Program
3030
{
31-
private static string CERT_PASSWORD = "StrongPass!12";
31+
private static string CERT_PASSWORD = Utilities.CreatePassword();
3232
private static string pfxPath;
3333

3434
public static void RunSample(IAzure azure)

Samples/AppService/ManageWebAppSqlConnection.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ public class Program
1717
{
1818
private const string Suffix = ".azurewebsites.net";
1919
private const string Admin = "jsdkadmin";
20-
private const string Password = "StrongPass!123";
20+
private static readonly string Password = Utilities.CreatePassword();
2121

2222
/**
2323
* Azure App Service basic sample for managing web apps.

Samples/AppService/ManageWebAppWithDomainSsl.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ namespace ManageWebAppWithDomainSsl
1515
{
1616
public class Program
1717
{
18-
private const string CertificatePassword = "StrongPass!12";
18+
private static readonly string CertificatePassword = Utilities.CreatePassword();
1919

2020
/**
2121
* Azure App Service sample for managing web apps.

Samples/AppService/ManageWebAppWithTrafficManager.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ namespace ManageWebAppWithTrafficManager
2828

2929
public class Program
3030
{
31-
private static string CERT_PASSWORD = "StrongPass!12";
31+
private static string CERT_PASSWORD = Utilities.CreatePassword();
3232
private static string pfxPath;
3333

3434
public static void RunSample(IAzure azure)
-2.41 KB
Binary file not shown.
-2.41 KB
Binary file not shown.
-2.49 KB
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.

Samples/BatchAI/ManageBatchAI.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ public static void RunSample(IAzure azure)
4444
Region region = Region.USWest2;
4545
string shareName = SdkContext.RandomResourceName("fs", 20);
4646
string clusterName = SdkContext.RandomResourceName("cluster", 15);
47-
string userName = "tirekicker";
47+
string userName = Utilities.CreateUsername();
4848
string sharePath = "mnistcntksample";
4949

5050
try

Samples/Compute/ConvertVirtualMachineToManagedDisks.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ namespace ConvertVirtualMachineToManagedDisks
1313
{
1414
public class Program
1515
{
16-
private static string userName = "tirekicker";
17-
private static string password = "12NewPA$$w0rd!";
16+
private static string userName = Utilities.CreateUsername();
17+
private static string password = Utilities.CreatePassword();
1818
private static Region region = Region.USWestCentral;
1919

2020
/**

Samples/Compute/CreateVMsUsingCustomImageOrSpecializedVHD.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ namespace CreateVMsUsingCustomImageOrSpecializedVHD
1616
{
1717
public class Program
1818
{
19-
private static readonly string UserName = "tirekicker";
20-
private static readonly string Password = "12NewPA$$w0rd!";
19+
private static readonly string UserName = Utilities.CreateUsername();
20+
private static readonly string Password = Utilities.CreatePassword();
2121
private readonly static List<string> ApacheInstallScriptUris = new List<string>()
2222
{
2323
"https://raw.githubusercontent.com/Azure/azure-libraries-for-net/master/Samples/Asset/install_apache.sh"

Samples/Compute/CreateVirtualMachineUsingCustomImageFromVHD.cs

+3-3
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ namespace CreateVirtualMachineUsingCustomImageFromVHD
1515
{
1616
public class Program
1717
{
18-
private static string userName = "tirekicker";
19-
private static string password = "12NewPA$$w0rd!";
20-
private static Region region = Region.USWest;
18+
private static readonly string userName = Utilities.CreateUsername();
19+
private static readonly string password = Utilities.CreatePassword();
20+
private static readonly Region region = Region.USWest;
2121

2222
/**
2323
* Azure Compute sample for managing virtual machines -

Samples/Compute/CreateVirtualMachineUsingCustomImageFromVM.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,8 @@ namespace CreateVirtualMachineUsingCustomImageFromVM
1515
{
1616
public class Program
1717
{
18-
private static string userName = "tirekicker";
19-
private static string password = "12NewPA$$w0rd!";
18+
private static string userName = Utilities.CreateUsername();
19+
private static string password = Utilities.CreatePassword();
2020
private static Region region = Region.USWest;
2121

2222
/**

Samples/Compute/CreateVirtualMachineUsingSpecializedDiskFromSnapshot.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ namespace CreateVirtualMachineUsingSpecializedDiskFromSnapshot
1414
{
1515
public class Program
1616
{
17-
private static string userName = "tirekicker";
18-
private static string password = "12NewPA$$w0rd!";
17+
private static string userName = Utilities.CreateUsername();
18+
private static string password = Utilities.CreatePassword();
1919
private static Region region = Region.USWestCentral;
2020

2121
/**

Samples/Compute/CreateVirtualMachineUsingSpecializedDiskFromVhd.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ namespace CreateVirtualMachineUsingSpecializedDiskFromVhd
1414
{
1515
public class Program
1616
{
17-
private static string userName = "tirekicker";
18-
private static string password = "12NewPA$$w0rd!";
17+
private static string userName = Utilities.CreateUsername();
18+
private static string password = Utilities.CreatePassword();
1919
private static Region region = Region.USWestCentral;
2020

2121
/**

Samples/Compute/CreateVirtualMachinesInParallel.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,8 @@ namespace CreateVirtualMachinesInParallel
1616
{
1717
public class Program
1818
{
19-
private const string Username = "tirekicker";
20-
private const string Password = "12NewPA$$w0rd!";
19+
private static readonly string Username = Utilities.CreateUsername();
20+
private static readonly string Password = Utilities.CreatePassword();
2121

2222
/**
2323
* Azure compute sample for creating multiple virtual machines in parallel.

Samples/Compute/ManageAvailabilitySet.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ namespace ManageAvailabilitySet
1313
{
1414
public class Program
1515
{
16-
private const string UserName = "tirekicker";
17-
private const string Password = "12NewPA$$w0rd!";
16+
private static readonly string UserName = Utilities.CreateUsername();
17+
private static readonly string Password = Utilities.CreatePassword();
1818

1919
/**
2020
* Azure Compute sample for managing availability sets -

Samples/Compute/ManageManagedDisks.cs

+7-7
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ public static void RunSample(IAzure azure)
2525
{
2626
var region = Region.USEast;
2727
var rgName = Utilities.CreateRandomName("rgCOMV");
28-
var userName = "tirekicker";
28+
var userName = Utilities.CreateUsername();
2929
var sshkey = "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD [email protected]";
3030

3131
try
@@ -69,7 +69,7 @@ public static void RunSample(IAzure azure)
6969
.WithExistingPrimaryInternetFacingLoadBalancer(PrepareLoadBalancer(azure, region, rgName))
7070
.WithoutPrimaryInternalLoadBalancer()
7171
.WithPopularLinuxImage(KnownLinuxVirtualMachineImage.UbuntuServer16_04_Lts)
72-
.WithRootUsername("tirekicker")
72+
.WithRootUsername(Utilities.CreateUsername())
7373
.WithSsh(sshkey)
7474
.WithNewDataDisk(100)
7575
.WithNewDataDisk(100, 1, CachingTypes.ReadWrite)
@@ -284,7 +284,7 @@ public static void RunSample(IAzure azure)
284284
.WithPrimaryPrivateIPAddressDynamic()
285285
.WithNewPrimaryPublicIPAddress(linuxVM7Pip)
286286
.WithPopularLinuxImage(KnownLinuxVirtualMachineImage.UbuntuServer16_04_Lts)
287-
.WithRootUsername("tirekicker")
287+
.WithRootUsername(Utilities.CreateUsername())
288288
.WithSsh(sshkey)
289289
.WithUnmanagedDisks() // uses storage accounts
290290
.WithNewUnmanagedDataDisk(100)
@@ -351,8 +351,8 @@ public static void Main(string[] args)
351351

352352
private static IVirtualMachine PrepareSpecializedUnmanagedVirtualMachine(IAzure azure, Region region, string rgName)
353353
{
354-
var userName = "tirekicker";
355-
var password = "12NewPA$$w0rd!";
354+
var userName = Utilities.CreateUsername();
355+
var password = Utilities.CreatePassword();
356356
var linuxVmName1 = SdkContext.RandomResourceName("vm" + "-", 10);
357357
var publicIpDnsLabel = SdkContext.RandomResourceName("pip" + "-", 20);
358358

@@ -390,8 +390,8 @@ private static IVirtualMachine PrepareSpecializedUnmanagedVirtualMachine(IAzure
390390

391391
private static IVirtualMachine PrepareSpecializedManagedVirtualMachine(IAzure azure, Region region, string rgName)
392392
{
393-
var userName = "tirekicker";
394-
var password = "12NewPA$$w0rd!";
393+
var userName = Utilities.CreateUsername();
394+
var password = Utilities.CreatePassword();
395395
var linuxVmName1 = SdkContext.RandomResourceName("vm" + "-", 10);
396396
var publicIpDnsLabel = SdkContext.RandomResourceName("pip" + "-", 20);
397397

Samples/Compute/ManageResourceFromMSIEnabledVirtualMachineBelongsToAADGroup.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,8 @@ public static void RunSample(IAzure azure)
3636
var linuxVMName = Utilities.CreateRandomName("VM1");
3737
var rgName = Utilities.CreateRandomName("rgCOMV");
3838
var pipName = Utilities.CreateRandomName("pip1");
39-
var userName = "tirekicker";
40-
var password = "12NewPA34w0rd!";
39+
var userName = Utilities.CreateUsername();
40+
var password = Utilities.CreatePassword();
4141
var region = Region.USWestCentral;
4242

4343
var installScript = "https://raw.githubusercontent.com/Azure/azure-libraries-for-net/master/Samples/Asset/create_resources_with_msi.sh";

Samples/Compute/ManageStorageFromMSIEnabledVirtualMachine.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ public static void RunSample(IAzure azure)
3232
var linuxVMName = Utilities.CreateRandomName("VM1");
3333
var rgName = Utilities.CreateRandomName("rgCOMV");
3434
var pipName = Utilities.CreateRandomName("pip1");
35-
var userName = "tirekicker";
36-
var password = "12NewPA34w0rd!";
35+
var userName = Utilities.CreateUsername();
36+
var password = Utilities.CreatePassword();
3737
var region = Region.USWestCentral;
3838

3939
var installScript = "https://raw.githubusercontent.com/Azure/azure-libraries-for-net/master/Samples/Asset/create_resources_with_msi.sh";

Samples/Compute/ManageUserAssignedMSIEnabledVirtualMachine.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -30,8 +30,8 @@ public static void RunSample(IAzure azure)
3030
var identityName = Utilities.CreateRandomName("id");
3131
var linuxVMName = Utilities.CreateRandomName("VM1");
3232
var pipName = Utilities.CreateRandomName("pip1");
33-
var userName = "tirekicker";
34-
var password = "12NewPAwX0rd!";
33+
var userName = Utilities.CreateUsername();
34+
var password = Utilities.CreatePassword();
3535
var region = Region.USWestCentral;
3636

3737
try

Samples/Compute/ManageVirtualMachine.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,8 +32,8 @@ public static void RunSample(IAzure azure)
3232
var windowsVmName = Utilities.CreateRandomName("wVM");
3333
var linuxVmName = Utilities.CreateRandomName("lVM");
3434
var rgName = Utilities.CreateRandomName("rgCOMV");
35-
var userName = "tirekicker";
36-
var password = "12NewPA$$w0rd!";
35+
var userName = Utilities.CreateUsername();
36+
var password = Utilities.CreatePassword();
3737

3838
try
3939
{

Samples/Compute/ManageVirtualMachineAsync.cs

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public async static Task RunSampleAsync(IAzure azure)
3434
var windowsVmName = Utilities.CreateRandomName("wVM");
3535
var linuxVmName = Utilities.CreateRandomName("lVM");
3636
var rgName = Utilities.CreateRandomName("rgCOMV");
37-
var userName = "tirekicker";
38-
var password = "12NewPA$$w0rd!";
37+
var userName = Utilities.CreateUsername();
38+
var password = Utilities.CreatePassword();
3939

4040
try
4141
{

Samples/Compute/ManageVirtualMachineExtension.cs

+10-10
Original file line numberDiff line numberDiff line change
@@ -17,16 +17,16 @@ public class Program
1717
{
1818
// Linux configurations
1919
//
20-
readonly static string FirstLinuxUserName = "tirekicker";
21-
readonly static string FirstLinuxUserPassword = "12NewPA$$w0rd!";
22-
readonly static string FirstLinuxUserNewPassword = "muy!234OR";
20+
readonly static string FirstLinuxUserName = Utilities.CreateUsername();
21+
readonly static string FirstLinuxUserPassword = Utilities.CreatePassword();
22+
readonly static string FirstLinuxUserNewPassword = Utilities.CreatePassword();
2323

2424
readonly static string SecondLinuxUserName = "seconduser";
25-
readonly static string SecondLinuxUserPassword = "B12a6@12xyz!";
25+
readonly static string SecondLinuxUserPassword = Utilities.CreatePassword();
2626
readonly static string SecondLinuxUserExpiration = "2020-12-31";
2727

2828
readonly static string ThirdLinuxUserName = "thirduser";
29-
readonly static string ThirdLinuxUserPassword = "12xyz!B12a6@";
29+
readonly static string ThirdLinuxUserPassword = Utilities.CreatePassword();
3030
readonly static string ThirdLinuxUserExpiration = "2020-12-31";
3131

3232
readonly static string LinuxCustomScriptExtensionName = "CustomScriptForLinux";
@@ -58,15 +58,15 @@ public class Program
5858

5959
// Windows configurations
6060
//
61-
readonly static string firstWindowsUserName = "tirekicker";
62-
readonly static string firstWindowsUserPassword = "12NewPA$$w0rd!";
63-
readonly static string firstWindowsUserNewPassword = "muy!234OR";
61+
readonly static string firstWindowsUserName = Utilities.CreateUsername();
62+
readonly static string firstWindowsUserPassword = Utilities.CreatePassword();
63+
readonly static string firstWindowsUserNewPassword = Utilities.CreatePassword();
6464

6565
readonly static string secondWindowsUserName = "seconduser";
66-
readonly static string secondWindowsUserPassword = "B12a6@12xyz!";
66+
readonly static string secondWindowsUserPassword = Utilities.CreatePassword();
6767

6868
readonly static string thirdWindowsUserName = "thirduser";
69-
readonly static string thirdWindowsUserPassword = "12xyz!B12a6@";
69+
readonly static string thirdWindowsUserPassword = Utilities.CreatePassword();
7070

7171
readonly static string windowsVmAccessExtensionName = "VMAccessAgent";
7272
readonly static string windowsVmAccessExtensionPublisherName = "Microsoft.Compute";

Samples/Compute/ManageVirtualMachineFromMSIEnabledVirtualMachine.cs

+3-2
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
using Microsoft.Azure.Management.ResourceManager.Fluent;
88
using Microsoft.Azure.Management.ResourceManager.Fluent.Authentication;
99
using Microsoft.Azure.Management.ResourceManager.Fluent.Core;
10+
using Microsoft.Azure.Management.Samples.Common;
1011
using System;
1112

1213
namespace ManageVirtualMachineFromMSIEnabledVirtualMachine
@@ -35,8 +36,8 @@ public static void Main(string[] args)
3536
string clientId = args.Length > 2 ? args[2] : null;
3637
Region region = Region.USWestCentral;
3738
string linuxVMName = SdkContext.RandomResourceName("vm", 30);
38-
string userName = "tirekicker";
39-
string password = "12NewPA$$w0rd!";
39+
string userName = Utilities.CreateUsername();
40+
string password = Utilities.CreatePassword();
4041

4142
//=============================================================
4243
// MSI Authenticate

Samples/Compute/ManageVirtualMachineScaleSet.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public static void RunSample(IAzure azure)
4848
var natPool60XXto23 = "natPool60XXto23";
4949
var vmssName = SdkContext.RandomResourceName("vmss", 24);
5050

51-
var userName = "tirekicker";
51+
var userName = Utilities.CreateUsername();
5252
var sshKey = "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD [email protected]";
5353

5454
var apacheInstallScript = "https://raw.githubusercontent.com/Azure/azure-libraries-for-net/master/Samples/Asset/install_apache.sh";

Samples/Compute/ManageVirtualMachineScaleSetAsync.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ public async static Task RunSampleAsync(IAzure azure)
4848
var natPool60XXto23 = "natPool60XXto23";
4949
var vmssName = SdkContext.RandomResourceName("vmss", 24);
5050

51-
var userName = "tirekicker";
51+
var userName = Utilities.CreateUsername();
5252
var sshKey = "ssh-rsa AAAAB3NzaC1yc2EAAAADAQABAAABAQCfSPC2K7LZcFKEO+/t3dzmQYtrJFZNxOsbVgOVKietqHyvmYGHEC0J2wPdAqQ/63g/hhAEFRoyehM+rbeDri4txB3YFfnOK58jqdkyXzupWqXzOrlKY4Wz9SKjjN765+dqUITjKRIaAip1Ri137szRg71WnrmdP3SphTRlCx1Bk2nXqWPsclbRDCiZeF8QOTi4JqbmJyK5+0UqhqYRduun8ylAwKKQJ1NJt85sYIHn9f1Rfr6Tq2zS0wZ7DHbZL+zB5rSlAr8QyUdg/GQD+cmSs6LvPJKL78d6hMGk84ARtFo4A79ovwX/Fj01znDQkU6nJildfkaolH2rWFG/qttD [email protected]";
5353

5454
var apacheInstallScript = "https://raw.githubusercontent.com/Azure/azure-libraries-for-net/master/Samples/Asset/install_apache.sh";

0 commit comments

Comments
 (0)