From 0017667ca63cf37c717bff3fd22bf375b4643555 Mon Sep 17 00:00:00 2001 From: mohitkumar-deliveryhero Date: Fri, 27 Mar 2026 19:06:02 +0100 Subject: [PATCH] docs: add missing resource types to adoption fields table Add adoption field mappings for DBCluster, IAM Policy, IAM Role, and ReplicationGroup. Sort table alphabetically for easier lookup. Co-authored-by: Bo --- website/docs/guides/adoption.md | 10 +++++++--- 1 file changed, 7 insertions(+), 3 deletions(-) diff --git a/website/docs/guides/adoption.md b/website/docs/guides/adoption.md index 61af1d65..4340fb67 100644 --- a/website/docs/guides/adoption.md +++ b/website/docs/guides/adoption.md @@ -98,12 +98,16 @@ The `services.k8s.aws/adoption-fields` annotation specifies which fields ACK sho | Resource Type | Adoption Field | Example | |--------------|----------------|---------| +| DBCluster | `dbClusterIdentifier` | `{"dbClusterIdentifier": "my-db-cluster"}` | +| DynamoDB Table | `tableName` | `{"tableName": "my-table"}` | | EKS Cluster | `name` | `{"name": "my-cluster"}` | +| IAM Policy | `arn` | `{"arn": "arn:aws:iam::123456789012:policy/my-policy"}` | +| IAM Role | `name` | `{"name": "my-role"}` | +| ReplicationGroup | `replicationGroupID` | `{"replicationGroupID": "my-redis-cluster"}` | +| S3 Bucket | `name` | `{"name": "my-bucket-name"}` | +| SNS Topic | `arn` | `{"arn": "arn:aws:sns:us-west-2:123456789012:my-topic"}` | | SQS Queue | `queueURL` | `{"queueURL": "https://sqs.us-west-2.amazonaws.com/123456789012/my-queue"}` | | VPC | `vpcID` | `{"vpcID": "vpc-123456789012"}` | -| SNS Topic | `arn` | `{"arn": "arn:aws:sns:us-west-2:123456789012:my-topic"}` | -| S3 Bucket | `name` | `{"name": "my-bucket-name"}` | -| DynamoDB Table | `tableName` | `{"tableName": "my-table"}` | Refer to the [API Reference](/services) for the specific fields required for each resource type.