Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[v16] DiscoveryConfig Status: add summary fields for RDS and EKS #49178

Merged
merged 1 commit into from
Nov 21, 2024
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
106 changes: 68 additions & 38 deletions api/gen/proto/go/teleport/discoveryconfig/v1/discoveryconfig.pb.go

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

6 changes: 6 additions & 0 deletions api/proto/teleport/discoveryconfig/v1/discoveryconfig.proto
Original file line number Diff line number Diff line change
Expand Up @@ -91,6 +91,12 @@ enum DiscoveryConfigState {
message IntegrationDiscoveredSummary {
// AWSEC2 contains the summary for the AWS EC2 discovered instances.
ResourcesDiscoveredSummary aws_ec2 = 1;

// AWSRDS contains the summary for the AWS RDS discovered databases.
ResourcesDiscoveredSummary aws_rds = 2;

// AWSEKS contains the summary for the AWS EKS discovered clusters.
ResourcesDiscoveredSummary aws_eks = 3;
}

// ResourcesDiscoveredSummary represents the AWS resources that were discovered.
Expand Down
Loading