Skip to content

Commit

Permalink
TEMPORARY rm tags support when loading ddb tables
Browse files Browse the repository at this point in the history
  • Loading branch information
kentnsw committed Apr 4, 2022
1 parent 915b42f commit 072018c
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 3 deletions.
5 changes: 5 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
7 changes: 4 additions & 3 deletions c7n/resources/dynamodb.py
Original file line number Diff line number Diff line change
Expand Up @@ -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')
Expand Down

0 comments on commit 072018c

Please sign in to comment.