Commit cba110aa authored by Arto Jantunen's avatar Arto Jantunen

Return missing ClusterID error instead of ignoring it

This fixes issue #57382.
parent a58f16bd
......@@ -75,7 +75,7 @@ func (t *awsTagging) init(legacyClusterID string, clusterID string) error {
if clusterID != "" {
glog.Infof("AWS cloud filtering on ClusterID: %v", clusterID)
} else {
glog.Warning("AWS cloud - no clusterID filtering applied for shared resources; do not run multiple clusters in this AZ.")
return fmt.Errorf("AWS cloud failed to find ClusterID")
}
return nil
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment