We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4b4da2b commit 9447b38Copy full SHA for 9447b38
internal/deployers/eksapi/infra.go
@@ -479,7 +479,7 @@ func (m *InfrastructureManager) getAZsWithCapacity(opts *deployerOptions) ([]str
479
480
func getCloudWatchStackName(resourceID string) (string, string) {
481
clusterUUID := strings.TrimPrefix(resourceID, ResourcePrefix+"-")
482
- return fmt.Sprintf("cloudwatch-%s", clusterUUID), clusterUUID
+ return fmt.Sprintf("%s-cw", resourceID), clusterUUID
483
}
484
485
func (m *InfrastructureManager) createCloudWatchInfrastructureStack(clusterName string) (string, error) {
0 commit comments