Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
### Summary > Describe your changes. Correctly specifies the parent job name to the GraphStatement from the AWS RPR sync. ### Related issues or links > Include links to relevant issues or other pages. - #689 ### Checklist Provide proof that this works (this makes reviews move faster). Please perform one or more of the following: - [ ] Update/add unit or integration tests. - [ ] Include a screenshot showing what the graph looked like before and after your changes. - [x] Include console log trace showing what happened before and after your changes. Before ``` INFO:cartography.intel.aws.permission_relationships:Syncing Permission Relationships for account 'XXX'. INFO:cartography.intel.aws.permission_relationships:Syncing relationship 'CAN_READ' for node label 'S3Bucket' INFO:cartography.intel.aws.permission_relationships:Cleaning up relationship 'CAN_READ' for node label 'S3Bucket' INFO:cartography.graph.statement:Completed None statement #None INFO:cartography.intel.aws.permission_relationships:Syncing relationship 'CAN_WRITE' for node label 'S3Bucket' INFO:cartography.intel.aws.permission_relationships:Cleaning up relationship 'CAN_WRITE' for node label 'S3Bucket' INFO:cartography.graph.statement:Completed None statement #None INFO:cartography.intel.aws.permission_relationships:Syncing relationship 'CAN_QUERY' for node label 'DynamoDBTable' INFO:cartography.intel.aws.permission_relationships:Cleaning up relationship 'CAN_QUERY' for node label 'DynamoDBTable' INFO:cartography.graph.statement:Completed None statement #None INFO:cartography.intel.aws.permission_relationships:Syncing relationship 'CAN_ADMINISTER' for node label 'RedshiftCluster' INFO:cartography.intel.aws.permission_relationships:Cleaning up relationship 'CAN_ADMINISTER' for node label 'RedshiftCluster' INFO:cartography.graph.statement:Completed None statement #None ``` After ``` INFO:cartography.intel.aws.permission_relationships:Syncing Permission Relationships for account 'XXX'. INFO:cartography.intel.aws.permission_relationships:Syncing relationship 'CAN_READ' for node label 'S3Bucket' INFO:cartography.intel.aws.permission_relationships:Cleaning up relationship 'CAN_READ' for node label 'S3Bucket' INFO:cartography.graph.statement:Completed CAN_READ:S3Bucket statement #1 INFO:cartography.intel.aws.permission_relationships:Syncing relationship 'CAN_WRITE' for node label 'S3Bucket' INFO:cartography.intel.aws.permission_relationships:Cleaning up relationship 'CAN_WRITE' for node label 'S3Bucket' INFO:cartography.graph.statement:Completed CAN_WRITE:S3Bucket statement #1 INFO:cartography.intel.aws.permission_relationships:Syncing relationship 'CAN_QUERY' for node label 'DynamoDBTable' INFO:cartography.intel.aws.permission_relationships:Cleaning up relationship 'CAN_QUERY' for node label 'DynamoDBTable' INFO:cartography.graph.statement:Completed CAN_QUERY:DynamoDBTable statement #1 INFO:cartography.intel.aws.permission_relationships:Syncing relationship 'CAN_ADMINISTER' for node label 'RedshiftCluster' INFO:cartography.intel.aws.permission_relationships:Cleaning up relationship 'CAN_ADMINISTER' for node label 'RedshiftCluster' INFO:cartography.graph.statement:Completed CAN_ADMINISTER:RedshiftCluster statement #1 ```
- Loading branch information