Skip to content

Commit

Permalink
feat: create listing helper functions
Browse files Browse the repository at this point in the history
  • Loading branch information
RoseSecurity committed Nov 22, 2024
1 parent 75b934a commit ac518a8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/list_components.go
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ var listComponentsCmd = &cobra.Command{
return
}

stacksMap, err := e.ExecuteDescribeStacks(cliConfig, "", nil, nil, nil, false, false)
stacksMap, err := e.ExecuteDescribeStacks(cliConfig, "", nil, nil, nil, false, false, false)
if err != nil {
u.PrintMessageInColor(fmt.Sprintf("Error describing stacks: %v", err), color.New(color.FgRed))
return
Expand Down
2 changes: 1 addition & 1 deletion cmd/list_stacks.go
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ var listStacksCmd = &cobra.Command{
return
}

stacksMap, err := e.ExecuteDescribeStacks(cliConfig, "", nil, nil, nil, false, false)
stacksMap, err := e.ExecuteDescribeStacks(cliConfig, "", nil, nil, nil, false, false, false)
if err != nil {
u.PrintMessageInColor(fmt.Sprintf("Error describing stacks: %v", err), color.New(color.FgRed))
return
Expand Down

0 comments on commit ac518a8

Please sign in to comment.