ListAccessEntryStackNames lists the stack names for all access entries in the specified cluster.
(ctx context.Context, clusterName string)
| 522 | |
| 523 | // ListAccessEntryStackNames lists the stack names for all access entries in the specified cluster. |
| 524 | func (c *StackCollection) ListAccessEntryStackNames(ctx context.Context, clusterName string) ([]string, error) { |
| 525 | return c.ListStackNames(ctx, fmt.Sprintf("^eksctl-%s-accessentry-*", clusterName)) |
| 526 | } |
| 527 | |
| 528 | // ListStacksWithStatuses gets all of CloudFormation stacks |
| 529 | func (c *StackCollection) ListStacksWithStatuses(ctx context.Context, statusFilters ...types.StackStatus) ([]*Stack, error) { |
nothing calls this directly
no test coverage detected