Skip to content

Commit 83fe1ad

Browse files
author
Cameron Battagler
committed
Bold variable names
1 parent f6a3ce3 commit 83fe1ad

File tree

1 file changed

+12
-12
lines changed
  • samples/manage/azure-automation-automated-export

1 file changed

+12
-12
lines changed

samples/manage/azure-automation-automated-export/README.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -33,22 +33,22 @@ Provides the scripts and lists the steps to set up automatically exporting your
3333
Save the AutoExport.ps1 and AutoExportBlobRetention.ps1 files locally to make these edits
3434

3535
1. In the AutoExport.ps1 script, here are the values that need to be modified:
36-
- $databaseServerPairs: This is where you put in the names of the databases you want to export along with the name of the server they are on.
36+
- **$databaseServerPairs:** This is where you put in the names of the databases you want to export along with the name of the server they are on.
3737
Add them in the format: `[pscustomobject]@{serverName="SAMPLESERVER1";databaseName="SAMPLEDATABASE1"}` make sure to comma separate the items
38-
- $serverCredentialsDictionary: If you are backing up from multiple servers, you can setup all of the credentials here and look them up by the server’s name later.
38+
- **$serverCredentialsDictionary:** If you are backing up from multiple servers, you can setup all of the credentials here and look them up by the server’s name later.
3939
Add a $serverCred variable in the format `$serverCred1 = Get-AutomationPSCredential -Name 'NAMEOFSERVERCREDENTIAL1';` for each Azure Automation Credential you created. Increment the variable name (eg. $serverCred2 $serverCred3) for each one.
4040
Add the $serverCreds to the dictionary in the format `'SAMPLESERVERNAME1'=$serverCred1;`
41-
- $batchingLimit: This tells the script how many databases can be worked on at the same time (basically, the maximum number of database copies that there will be at once).
42-
- $retryLimit: This tells the script how many times it can retry an operation.
43-
- $waitTimeInMinutes: This tells the script how long it can wait for an operation to complete before it fails.
44-
- $storageKeyVariableName: This is the Azure Automation string Variable name you created to store your Storage Key.
45-
- $storageAccountName: This is the name of the storage account you are exporting to.
46-
- $connectionAssetName: Connection Asset Name for Authenticating (Keep as AzureClassicRunAsConnection if you created the default RunAs accounts)
41+
- **$batchingLimit:** This tells the script how many databases can be worked on at the same time (basically, the maximum number of database copies that there will be at once).
42+
- **$retryLimit:** This tells the script how many times it can retry an operation.
43+
- **$waitTimeInMinutes:** This tells the script how long it can wait for an operation to complete before it fails.
44+
- **$storageKeyVariableName:** This is the Azure Automation string Variable name you created to store your Storage Key.
45+
- **$storageAccountName:** This is the name of the storage account you are exporting to.
46+
- **$connectionAssetName:** Connection Asset Name for Authenticating (Keep as AzureClassicRunAsConnection if you created the default RunAs accounts)
4747
2. In AutoExportBlobRetention, here are the values that need to be modified:
48-
- $storageKeyVariableName: This is the Azure Automation string Variable name you created to store your Storage Key.
49-
- $storageAccountName: This is the name of your Storage Account you exported your bacpacs to.
50-
- $storageContainerName: This is the name of the storage container where you will be monitoring the exported blobs.
51-
- $retentionInDays: This is how many days you want to keep the exported blobs stored for before deleting.
48+
- **$storageKeyVariableName:** This is the Azure Automation string Variable name you created to store your Storage Key.
49+
- **$storageAccountName:** This is the name of your Storage Account you exported your bacpacs to.
50+
- **$storageContainerName:** This is the name of the storage container where you will be monitoring the exported blobs.
51+
- **retentionInDays:** This is how many days you want to keep the exported blobs stored for before deleting.
5252

5353
## Adding the Script to Azure Automation
5454

0 commit comments

Comments
 (0)