Skip to content

Commit

Permalink
fix error message in route53 data source (#13174)
Browse files Browse the repository at this point in the history
  • Loading branch information
seeingidog2 authored and stack72 committed Mar 30, 2017
1 parent 11fa03c commit 1dca122
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion builtin/providers/aws/data_source_aws_route53_zone.go
Original file line number Diff line number Diff line change
Expand Up @@ -136,7 +136,7 @@ func dataSourceAwsRoute53ZoneRead(d *schema.ResourceData, meta interface{}) erro

if matchingTags && matchingVPC {
if hostedZoneFound != nil {
return fmt.Errorf("multplie Route53Zone found please use vpc_id option to filter")
return fmt.Errorf("multiple Route53Zone found please use vpc_id option to filter")
} else {
hostedZoneFound = hostedZone
}
Expand Down

0 comments on commit 1dca122

Please sign in to comment.