From 4e449b07e35cbe958208dc3a08701552c83211fc Mon Sep 17 00:00:00 2001 From: Audrey Eschright Date: Wed, 20 Nov 2019 11:44:57 -0800 Subject: [PATCH] Fix linter error --- aws/resource_aws_glue_job.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aws/resource_aws_glue_job.go b/aws/resource_aws_glue_job.go index 19468747dec..4e2aa294588 100644 --- a/aws/resource_aws_glue_job.go +++ b/aws/resource_aws_glue_job.go @@ -122,7 +122,7 @@ func resourceAwsGlueJob() *schema.Resource { Type: schema.TypeString, Optional: true, ConflictsWith: []string{"allocated_capacity", "max_capacity"}, - ValidateFunc: validation.StringInSlice([]string{ + ValidateFunc: validation.StringInSlice([]string{ glue.WorkerTypeG1x, glue.WorkerTypeG2x, glue.WorkerTypeStandard,