Skip to content

Commit

Permalink
[dc] Fixes AWSC Connection table name
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrey Fedorov committed Nov 22, 2019
1 parent adc2d73 commit efac7a6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/connectors/aws_collect.py
Original file line number Diff line number Diff line change
Expand Up @@ -732,7 +732,7 @@ def connect(connection_name, options):
table_prefix = f'aws_collect' + (
'' if connection_name in ('', 'default') else connection_name
)
table_name = f'{table_prefix}_iam_list_accounts_connection'
table_name = f'{table_prefix}_organizations_list_accounts_connection'
landing_table = f'data.{table_name}'

audit_assumer_arn = options['audit_assumer_arn']
Expand Down

0 comments on commit efac7a6

Please sign in to comment.