Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions api/proto/teleport/legacy/types/types.proto
Original file line number Diff line number Diff line change
Expand Up @@ -7021,6 +7021,15 @@ message AWSICResourceFilter {
// the supplied regex.
string name_regex = 2 [(gogoproto.jsontag) = "name_regex,omitempty"];
}

// Exclude specifies which AWS resources should be explicitly excluded.
oneof exclude {
// ExcludeId indicates that a resource should be excluded by exact ID.
string exclude_id = 3 [(gogoproto.jsontag) = "id,omitempty"];

// ExcludeNameRegex excludes resources whose name matches this regex.
string exclude_name_regex = 4 [(gogoproto.jsontag) = "name_regex,omitempty"];
}
}

// UserSyncFilter is a map of key-value pairs used to filter users based on their metadata labels.
Expand Down
Loading
Loading