Closed oijkn closed 3 months ago
Describe the bug When I run the command sato parse -f athena.yaml, the following warnings appear in the log:
sato parse -f athena.yaml
10:07AM WRN AWS::Athena::WorkGroup not found 10:07AM WRN AWS::Athena::NamedQuery not found
As a result, the Terraform configuration generation fails.
To Reproduce Steps to reproduce the behavior:
Create a file named athena.yaml with the following configuration:
Resources: athenworkgroup: Type: AWS::Athena::WorkGroup Properties: Name: "my-workgroup" State: "ENABLED" securityhubAthenaView: Type: AWS::Athena::NamedQuery Properties: Name: AWS-athena Database: !Ref database WorkGroup: !Ref athenworkgroup QueryString: > SELECT * FROM "my_table" WHERE "severity" = 'CRITICAL'
Expected behavior The configuration should be parsed without warnings, and the Terraform configuration should be generated successfully.
Screenshots N/A
Additional context Any guidance or fixes for this issue would be greatly appreciated. Thank you!
thanks for logging this ill take a look
I have added new support for these resources athena namedquery and workgroup
resolved in 0.1.17
Describe the bug When I run the command
sato parse -f athena.yaml
, the following warnings appear in the log:As a result, the Terraform configuration generation fails.
To Reproduce Steps to reproduce the behavior:
Create a file named athena.yaml with the following configuration:
sato parse -f athena.yaml
.Expected behavior The configuration should be parsed without warnings, and the Terraform configuration should be generated successfully.
Screenshots N/A
Additional context Any guidance or fixes for this issue would be greatly appreciated. Thank you!