gce: Limit backend names to 63 chars

This commit is contained in:
Ciprian Hacman 2024-02-25 18:20:07 +02:00
parent bd5bf53e86
commit 770e56e010
1 changed files with 1 additions and 1 deletions

View File

@ -105,7 +105,7 @@ func (c *GCEModelContext) NameForHealthCheck(id string) string {
}
func (c *GCEModelContext) NameForBackendService(id string) string {
return c.SafeObjectName(id)
return c.SafeSuffixedObjectName(id)
}
func (c *GCEModelContext) NameForForwardingRule(id string) string {