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
130 changes: 107 additions & 23 deletions api/gen/proto/go/teleport/clusterconfig/v1/access_graph.pb.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 8 additions & 0 deletions api/proto/teleport/clusterconfig/v1/access_graph.proto
Original file line number Diff line number Diff line change
Expand Up @@ -30,4 +30,12 @@ message AccessGraphConfig {
// insecure is a flag that indicates whether the access graph service should
// skip verifying the server's certificate chain and host name.
bool insecure = 4;
// secrets_scan_config is used to configure the parameters for the secrets scanning functionality.
AccessGraphSecretsScanConfiguration secrets_scan_config = 5;
}

// AccessGraphSecretsScanConfiguration controls the secrets scanning service parameters.
message AccessGraphSecretsScanConfiguration {
// ssh_scan_enabled indicates if the SSH scan feature is enabled for the cluster.
bool ssh_scan_enabled = 1;
}