You can create an Storage stack template either in the Azure console or by CLI.
Deploy with CLI
Procedure
- Create scanner-parameters.json:
{ "$schema": "<https://schema.management.azure.com/schemas/2019-04-01/deploymentParameters.json#>", "contentVersion": "1.0.0.0", "parameters": { "FileStorageSecurityServicePrincipalID": { "value": "<your-service-principal-id>" }, "CloudOneRegion": { "value": "<your-c1-region>" } } }
- Deploy the stack:
az deployment group create \ --name <deployment-name> \ --resource-group <scanner-resource-group> \ --template-file FSS-Scanner-Stack-Template.json \ --parameters @scanner-parameters.json
- Query the output result:
# For resource group level deployment (Scanner or Storage Stack): az deployment group show \ --name <deployment-name> \ --resource-group <resource-group-name> \ --query "properties.outputs" \ -o json
Deploy with the Azure console
Procedure
- Enter the Azure Portal.
- Click Create a resource.
- Search for Template deployment
- Go to .
- Load the template:
- Copy the content from FSS-Scanner-Stack-Template.json
- Click Save.
- Fill in the parameters:
-
FileStorageSecurityServicePrincipalID: Enter the service principal ID
-
CloudOneRegion: Select the Trend Cloud One Region (default: us-1)
-
BlobStorageAccountResourceID: Enter storage account resource ID
-
Other parameters as needed
-
- Click Review + create
- Click Create.
- Wait while the stacks are installed. This could take several minutes. You'll know when everything is installed when you see Your deployment is complete messages for the File Storage Security stacks.