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
Usage: "specify paths to JSON configuration file schemas to determine that a file matches some configuration and pass the schema to Rego checks for type checking",
110
111
}
112
+
RenderCauseFlag=Flag[[]string]{
113
+
Name: "render-cause",
114
+
ConfigName: "misconfiguration.render-cause",
115
+
Usage: "specify configuration types for which the rendered causes will be shown in the table report",
116
+
Values: xstrings.ToStringSlice([]types.ConfigType{types.Terraform}), // TODO: add Plan and JSON?
117
+
Default: []string{},
118
+
}
111
119
)
112
120
113
121
// MisconfFlagGroup composes common printer flag structs used for commands providing misconfiguration scanning.
@@ -128,6 +136,7 @@ type MisconfFlagGroup struct {
0 commit comments