MCPcopy Create free account
hub / github.com/eksctl-io/eksctl / ListAddonIAMStackNames

Method ListAddonIAMStackNames

pkg/cfn/manager/api.go:519–521  ·  view source on GitHub ↗

ListAddonIAMStackNames lists the stack names for all access entries in the specified cluster.

(ctx context.Context, clusterName, addonName string)

Source from the content-addressed store, hash-verified

517
518// ListAddonIAMStackNames lists the stack names for all access entries in the specified cluster.
519func (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.
524func (c *StackCollection) ListAccessEntryStackNames(ctx context.Context, clusterName string) ([]string, error) {

Callers

nothing calls this directly

Calls 1

ListStackNamesMethod · 0.95

Tested by

no test coverage detected