From ab0b9b1ef66bd0110217c064cebc8052a5556a00 Mon Sep 17 00:00:00 2001 From: Scott Ford Date: Thu, 16 May 2024 15:24:24 -0700 Subject: [PATCH] Updates aws.account.id resource Signed-off-by: Scott Ford --- providers/aws/resources/aws_account.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/providers/aws/resources/aws_account.go b/providers/aws/resources/aws_account.go index 1207f5b42b..762f39e9bf 100644 --- a/providers/aws/resources/aws_account.go +++ b/providers/aws/resources/aws_account.go @@ -16,7 +16,7 @@ import ( ) func (a *mqlAwsAccount) id() (string, error) { - return "aws.account/" + a.Id.Data, nil + return a.Id.Data, nil } func (a *mqlAwsAccount) aliases() ([]interface{}, error) {