Skip to content

Commit

Permalink
Fix spelling in error message for aws_db_snapshot data source
Browse files Browse the repository at this point in the history
  • Loading branch information
zxjinn committed Jul 22, 2017
1 parent 2a4120b commit 3a34ec3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aws/data_source_aws_db_snapshot.go
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ func dataSourceAwsDbSnapshotRead(d *schema.ResourceData, meta interface{}) error
snapshotIdentifier, snapshotIdentifierOk := d.GetOk("db_snapshot_identifier")

if !instanceIdentifierOk && !snapshotIdentifierOk {
return fmt.Errorf("One of db_snapshot_indentifier or db_instance_identifier must be assigned")
return fmt.Errorf("One of db_snapshot_identifier or db_instance_identifier must be assigned")
}

params := &rds.DescribeDBSnapshotsInput{
Expand Down

0 comments on commit 3a34ec3

Please sign in to comment.