From 1e4fa2877915d904ebbcd003355595460ef18547 Mon Sep 17 00:00:00 2001 From: Yury Tsarev Date: Fri, 25 Feb 2022 16:48:03 +0100 Subject: [PATCH] Fix comment for IncludeList Signed-off-by: Yury Tsarev --- pkg/config/provider.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/config/provider.go b/pkg/config/provider.go index d1ab525..0843b8f 100644 --- a/pkg/config/provider.go +++ b/pkg/config/provider.go @@ -86,7 +86,7 @@ type Provider struct { SkipList []string // IncludeList is a list of regex for the Terraform resources to be - // skipped. For example, to include "aws_shield_protection_group" into + // included. For example, to include "aws_shield_protection_group" into // the generated resources, one can add "aws_shield_protection_group$". // To include whole aws waf group, one can add "aws_waf.*" to the list. // Defaults to []string{".+"} which would include all resources.