From 072018c3df3391049c4942c5905e56bd57394f0f Mon Sep 17 00:00:00 2001 From: Kent Ou <84220825+kentnsw@users.noreply.github.com> Date: Fri, 17 Dec 2021 10:15:59 +1100 Subject: [PATCH] TEMPORARY rm tags support when loading ddb tables --- README.md | 5 +++++ c7n/resources/dynamodb.py | 7 ++++--- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 773acd659d2..7581c960568 100644 --- a/README.md +++ b/README.md @@ -13,6 +13,7 @@ Cloud Custodian ### c7n +- TEMPORARY remove tags support when loading ddb tables - normalise value_type apply to keys in value_from.expr - add key_type to enable key normalization - make key_type apply to value_from.expr as well @@ -22,6 +23,10 @@ Cloud Custodian - webhook action supports os env variables - enable variables in expr of value_from +### c7n_org + +- c7n-org supports the argument not-accounts + ### c7n_gcp - enable annotation op for IAM policy in gcp.project diff --git a/c7n/resources/dynamodb.py b/c7n/resources/dynamodb.py index 79dab1c17b9..1abe73c2b45 100644 --- a/c7n/resources/dynamodb.py +++ b/c7n/resources/dynamodb.py @@ -33,9 +33,10 @@ def load_resource(self, item): class DescribeTable(query.DescribeSource): def augment(self, resources): - return universal_augment( - self.manager, - super(DescribeTable, self).augment(resources)) + # return universal_augment( + # self.manager, + # super(DescribeTable, self).augment(resources)) + return super(DescribeTable, self).augment(resources) @resources.register('dynamodb-table')