Skip to content

Commit

Permalink
FIX: remove Elem with incompatible type
Browse files Browse the repository at this point in the history
  • Loading branch information
Billlynch committed Sep 12, 2020
1 parent 93e805b commit aa63a89
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions aws/resource_aws_iot_authorizer.go
Original file line number Diff line number Diff line change
Expand Up @@ -34,19 +34,13 @@ func resourceAwsIoTAuthorizer() *schema.Resource {
),
},
"authorizer_function_arn": {
Type: schema.TypeString,
Required: true,
Elem: &schema.Schema{
Type: schema.TypeString,
ValidateFunc: validateArn,
},
Type: schema.TypeString,
Required: true,
ValidateFunc: validateArn,
},
"signing_disabled": {
Type: schema.TypeBool,
Required: true,
Elem: &schema.Schema{
Type: schema.TypeBool,
},
},
"status": {
Type: schema.TypeString,
Expand Down

0 comments on commit aa63a89

Please sign in to comment.