Skip to content

Commit

Permalink
🐛 Fix AWS VPC routetable id
Browse files Browse the repository at this point in the history
Signed-off-by: Marius Kimmina <[email protected]>
  • Loading branch information
mariuskimmina committed Sep 24, 2023
1 parent d3f44c0 commit 788642f
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 1 deletion.
7 changes: 6 additions & 1 deletion providers/aws/resources/aws.lr.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions providers/aws/resources/aws_vpc.go
Original file line number Diff line number Diff line change
Expand Up @@ -140,6 +140,10 @@ func (a *mqlAwsVpc) flowLogs() ([]interface{}, error) {
return flowLogs, nil
}

func (a *mqlAwsVpcRoutetable) id() (string, error) {
return a.Id.Data, nil
}

func (a *mqlAwsVpc) routeTables() ([]interface{}, error) {
conn := a.MqlRuntime.Connection.(*connection.AwsConnection)
vpcVal := a.Id.Data
Expand Down

0 comments on commit 788642f

Please sign in to comment.