Skip to content

Commit 3aa783e

Browse files
authored
Replaced with approved sensitive identifiers
1 parent 2e6d1ed commit 3aa783e

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

articles/batch/batch-user-accounts.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -159,8 +159,8 @@ pool = batchClient.PoolOperations.CreatePool(
159159
// Add named user accounts.
160160
pool.UserAccounts = new List<UserAccount>
161161
{
162-
new UserAccount("adminUser", "******", ElevationLevel.Admin),
163-
new UserAccount("nonAdminUser", "******", ElevationLevel.NonAdmin),
162+
new UserAccount("adminUser", "A1bC2d", ElevationLevel.Admin),
163+
new UserAccount("nonAdminUser", "A1bC2d", ElevationLevel.NonAdmin),
164164
};
165165

166166
// Commit the pool.
@@ -208,7 +208,7 @@ pool.UserAccounts = new List<UserAccount>
208208
{
209209
new UserAccount(
210210
name: "adminUser",
211-
password: "******",
211+
password: "A1bC2d",
212212
elevationLevel: ElevationLevel.Admin,
213213
linuxUserConfiguration: new LinuxUserConfiguration(
214214
uid: 12345,
@@ -217,7 +217,7 @@ pool.UserAccounts = new List<UserAccount>
217217
)),
218218
new UserAccount(
219219
name: "nonAdminUser",
220-
password: "******",
220+
password: "A1bC2d",
221221
elevationLevel: ElevationLevel.NonAdmin,
222222
linuxUserConfiguration: new LinuxUserConfiguration(
223223
uid: 45678,
@@ -251,11 +251,11 @@ batchClient.poolOperations().createPool(addParameter);
251251
users = [
252252
batchmodels.UserAccount(
253253
name='pool-admin',
254-
password='******',
254+
password='A1bC2d',
255255
elevation_level=batchmodels.ElevationLevel.admin)
256256
batchmodels.UserAccount(
257257
name='pool-nonadmin',
258-
password='******',
258+
password='A1bC2d',
259259
elevation_level=batchmodels.ElevationLevel.non_admin)
260260
]
261261
pool = batchmodels.PoolAddParameter(

0 commit comments

Comments
 (0)