testdriverai 6.1.11-canary.5b4a4e1.0 → 6.1.11-canary.6f43621.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/agent/index.js
CHANGED
|
@@ -272,12 +272,50 @@ Our TestDriver Golden Image (AMI) comes pre-configured with everything you need
|
|
|
272
272
|
|
|
273
273
|
### Modifying the AMI
|
|
274
274
|
|
|
275
|
-
|
|
275
|
+
<Danger>
|
|
276
|
+
**Change Default Password First**: The TestDriver AMI includes a default password for initial access. You MUST change this password before saving a new AMI. Never use the default password in production environments.
|
|
277
|
+
</Danger>
|
|
278
|
+
|
|
279
|
+
You can customize the AMI for your specific needs. Follow these steps carefully:
|
|
280
|
+
|
|
281
|
+
#### Step 1: Initial Access
|
|
282
|
+
|
|
283
|
+
Connect to your instance via RDP using the default credentials:
|
|
284
|
+
|
|
285
|
+
- **Username**: `testdriver`
|
|
286
|
+
- **Default Password**: `changemeABC123`
|
|
287
|
+
|
|
288
|
+
#### Step 2: Change the Password
|
|
289
|
+
|
|
290
|
+
Before doing anything else, change the default password:
|
|
291
|
+
|
|
292
|
+
1. Open PowerShell on the instance
|
|
293
|
+
2. Run the password rotation script:
|
|
294
|
+
```powershell
|
|
295
|
+
C:\testdriver\RotateLocalPasswords.ps1
|
|
296
|
+
```
|
|
297
|
+
3. **Save the new password securely** - you'll need it for all future access to this instance
|
|
298
|
+
|
|
299
|
+
<Note>
|
|
300
|
+
The password rotation script will generate a secure password for the `testdriver` account. Make sure to save this password in a secure location (password manager, secrets vault, etc.) before proceeding.
|
|
301
|
+
</Note>
|
|
302
|
+
|
|
303
|
+
#### Step 3: Make Your Customizations
|
|
304
|
+
|
|
305
|
+
Now that you've secured the instance with a new password:
|
|
306
|
+
|
|
307
|
+
1. **Make your changes** using the `testdriver` account with your new password
|
|
308
|
+
2. Install additional software as needed
|
|
309
|
+
3. Configure settings specific to your environment
|
|
310
|
+
|
|
311
|
+
<Tip>
|
|
312
|
+
**Need to make further customizations or debug issues?** RDP back into the instance using the `testdriver` account with the new password you set in Step 2. This gives you full desktop access to install software, modify configurations, or troubleshoot problems before saving your custom AMI.
|
|
313
|
+
</Tip>
|
|
314
|
+
|
|
315
|
+
#### Step 4: Save Your Custom AMI
|
|
276
316
|
|
|
277
|
-
1. **
|
|
278
|
-
2. **
|
|
279
|
-
3. **Create a new AMI** from your modified instance
|
|
280
|
-
4. **Update your workflow** to use the new AMI ID
|
|
317
|
+
1. **Create a new AMI** from your modified instance using the AWS console or CLI
|
|
318
|
+
2. **Update your workflow** to use the new AMI ID
|
|
281
319
|
|
|
282
320
|
### Amazon Image Builder
|
|
283
321
|
|
|
@@ -366,4 +404,4 @@ For enterprise customers:
|
|
|
366
404
|
|
|
367
405
|
- Contact your account manager for AMI access issues
|
|
368
406
|
- Use support channels for infrastructure questions
|
|
369
|
-
- Check the TestDriver documentation for CLI usage
|
|
407
|
+
- Check the TestDriver documentation for CLI usage
|