Hi Unknown-2795,
Thank you for providing more information.
We understand your concern with updating tags using PowerShell commands, specifically with a load balancer. We were able to update the tags for the whole cloudservice but not for the loadbalancer. But with GUI, it is possible. We have done some investigation and reached a conclusion about the possible cause.
The documentation mentions: https://learn.microsoft.com/en-us/azure/cloud-services-extended-support/deploy-powershell
In Azure Resource Manager, certain resources, including the load balancer, are designated as read-only. This means that while you can view and use these resources, you cannot directly modify them through the Azure Resource Manager interface. Instead, any updates or changes to these resources must be made through specific configuration files.
For Cloud Services (extended support), you can update resources using the following files:
Service Configuration (.cscfg) File: This file specifies the number of role instances to deploy for each role in the service, the values of any configuration settings, and the thumbprints for any certificates associated with a role. You can add or update settings within this file to configure your load balancer.
Service Definition (.csdef) File: This file defines the service model, including the roles and their configurations. It includes settings for endpoints, load balancer probes, and other configurations necessary for the service.
By using these files, you can manage and update the configuration of your load balancer and other resources in a structured and controlled manner. This approach ensures that changes are consistently applied across your deployment and helps maintain the integrity of your service configuration.
.If you have any further queries, do let us know.
If the answer is helpful, please click "Accept Answer" and "Upvote it."