ListAddonIAMStackNames lists the stack names for all access entries in the specified cluster.
(ctx context.Context, clusterName, addonName string)
| 517 | |
| 518 | // ListAddonIAMStackNames lists the stack names for all access entries in the specified cluster. |
| 519 | func (c *StackCollection) ListAddonIAMStackNames(ctx context.Context, clusterName, addonName string) ([]string, error) { |
| 520 | return c.ListStackNames(ctx, fmt.Sprintf("^eksctl-%s-addon-%s-*", clusterName, addonName)) |
| 521 | } |
| 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) { |
nothing calls this directly
no test coverage detected