Skip to content

Commit

Permalink
Merge pull request #1212 from zxjinn/zxjinn/snapshot_spelling
Browse files Browse the repository at this point in the history
Fix spelling in error message for aws_db_snapshot data source
  • Loading branch information
radeksimko authored Jul 24, 2017
2 parents 2a4120b + 3a34ec3 commit 5a4a6cb
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 5a4a6cb

Please sign in to comment.