Everpure Cloud Azure Native supports setting and modifying Azure tags.
Azure tags are supported for Azure Native Everpure Cloud Service including associated Storage Pools and can be set via the Azure Portal, Azure CLI, REST API, see examples below.
Configure tags using Azure Portal
Configure tags using Azure CLI
az tag update --resource-id /subscriptions/<subscription id>/resourceGroups/<resource group name>/providers/PureStorage.Block/storagePools/<storage pool name> --operation Merge --tags Dept=Finance Status=Normal
{
"id": "/subscriptions/<subscription id>/resourceGroups/<resource group name>/providers/PureStorage.Block/storagePools/<storage pool name>/providers/Microsoft.Resources/tags/default",
"name": "default",
"properties": {
"tags": {
"Dept": "Finance",
"Status": "Normal",
"aa": "d"
}
},
"resourceGroup": "<resource group name>",
"type": "Microsoft.Resources/tags"
}
In the above example, replace the <resource group name> with the name of your Resource group, <subscription id> with the ID of your Azure Subscription and <storage pool name> with the name of your Storage Pool.