-
Notifications
You must be signed in to change notification settings - Fork 547
Closed
Description
Describe the Bug
Having successfully synced with AWS to my Postgres database, I'm inspecting my CloudFormation resources and it seems it's not possible to join the aws_cloudformation_stacks table with aws_cloudformation_stack_resources due to their being neither stack_id nor stack_name fields in that table.
Expected Behavior
aws_cloudformation_stack_resources be written with stack_id and stack_name columns, especially as these fields are available from the API.
CloudQuery Version
$ cloudquery --version
cloudquery version 2.3.9
Also with AWS plugin v15.0.0
Steps to Reproduce
Here's my bare basic config file
---
kind: source
spec:
name: aws
path: cloudquery/aws
version: v15.0.0
destinations:
- postgresql
# spec: {}
---
kind: destination
spec:
name: postgresql
path: cloudquery/postgresql
version: v2.0.10
spec:
connection_string: postgresql://postgres@172.17.0.2/postgres?sslmode=disableSQL that I can't write.
SELECT *
FROM aws_cloudformation_stacks stack
JOIN aws_cloudformation_stack_resources resource ON (stack.stack_id = resource.stack_id)Metadata
Metadata
Assignees
Labels
No labels