You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
> The CycleCloudCluster and CycleCloudNodeArray tags were added in 8.2 to make it easier to get costs from Azure Cost Management, using a standard format also used for
53
53
> the subject of [events sent to Event Grid](~/events.md#subject). The value for ClusterId is not constant over time, since the site name and owner can be changed.
54
-
::: moniker-end
54
+
#::: moniker-end
55
55
56
56
57
57
Within a resource that supports [Resource Manager Operations](/azure/azure-resource-manager/resource-group-using-tags) you can create additional tags to assign to the instance by specifying them with a node definition inside your template:
@@ -74,13 +74,20 @@ CustomText => "Hello world"
74
74
75
75
## Restrictions
76
76
77
-
There are limits on the number and format of tags applied to each Virtual Machine. Please review the [Tagging Azure Resources documentation](/azure/azure-resource-manager/resource-group-using-tags) for full details.
77
+
There are limits on the number and format of tags applied to each Virtual Machine. Please review the [Limitations on tagging Azure Resources documentation](/azure/azure-resource-manager/management/tag-resources#limitations) for full details.
78
78
79
79
Do not include quotation marks or periods in your tag names.
80
80
81
81
> [!NOTE]
82
-
> Tag names in CycleCloud cannot contain the following characters:<br>
83
-
> `.``"``:``=`
82
+
> Tag names in CycleCloud cannot contain the following characters: `.``"``:``=`
83
+
> If a tag needs to include a period ('.'), use the notation Tag == ['tag.subtag'=value]. For instance, if you want to create a tag named compute.node, you should use Tag == ['compute.node'=value].
84
+
>
85
+
> Also, following are some alternatives to the notation Tag == ['tag.subtag'=value] for defining tags with periods:
86
+
> -**Underscores**: Use underscores instead of periods, e.g., Tag == ['compute_node'=value].
87
+
> -**CamelCase**: Combine the main tag and subtag without separators, e.g., Tag == ['computeNode'=value].
88
+
> -**Nested Tags**: Represent the hierarchical structure, e.g., Tag == ['compute'={'node'=value}].
89
+
> -**Colon Separator**: Use a colon instead of a period, e.g., Tag == ['compute:node'=value].
0 commit comments