You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cmd.AddCommand(deleteSubcommand(newRM, "certificates", "Delete root user Signin Certificates", "Delete existing root user Signing Certificates for specific AWS Organization member accounts."))
29
29
cmd.AddCommand(DeleteS3BucketPolicy(newRM))
30
30
cmd.AddCommand(DeleteSQSQueuePolicy(newRM))
31
+
cmd.PersistentFlags().BoolVar(&skipFlag, "skip", false, "Skip the confirmation prompt")
31
32
returncmd
32
33
}
33
34
@@ -71,6 +72,17 @@ func runDelete(newRM func(context.Context) (rootmanager.RootManager, error), w i
cmd.PersistentFlags().StringSliceVarP(&accountsFlags, "accounts", "a", []string{}, "List of tarjet AWS account IDs (comma-separated). Use \"all\" to select all accounts.")
93
+
cmd.Flags().BoolVar(&skip, "skip", false, "Skip the confirmation prompt")
0 commit comments