From 994a974858d230946d21c1f3d457daa9af04d063 Mon Sep 17 00:00:00 2001 From: Hossein Rouhani Date: Fri, 23 Feb 2024 08:30:40 +0100 Subject: [PATCH] Changed the type to string Signed-off-by: Hossein Rouhani --- providers/aws/resources/aws_config.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/providers/aws/resources/aws_config.go b/providers/aws/resources/aws_config.go index ec954ab890..70b7489c35 100644 --- a/providers/aws/resources/aws_config.go +++ b/providers/aws/resources/aws_config.go @@ -83,7 +83,7 @@ func (a *mqlAwsConfig) getRecorders(conn *connection.AwsConnection) []*jobpool.J "roleArn": llx.StringDataPtr(r.RoleARN), "allSupported": llx.BoolData(r.RecordingGroup.AllSupported), "includeGlobalResourceTypes": llx.BoolData(r.RecordingGroup.IncludeGlobalResourceTypes), - "resourceTypes": llx.ArrayData(resourceTypesInterface, types.Any), + "resourceTypes": llx.ArrayData(resourceTypesInterface, types.String), "recording": llx.BoolData(recording), "region": llx.StringData(regionVal), "lastStatus": llx.StringData(lastStatus),