Skip to content

Commit

Permalink
Merge pull request #1766 from nickkoza/aws_db_arn_fix
Browse files Browse the repository at this point in the history
Fix copy/paste error in data_source_aws_db_instance
  • Loading branch information
radeksimko authored Sep 28, 2017
2 parents 8c93067 + 00ccfb5 commit 2dbbf75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion aws/data_source_aws_db_instance.go
Original file line number Diff line number Diff line change
Expand Up @@ -232,7 +232,7 @@ func dataSourceAwsDbInstanceRead(d *schema.ResourceData, meta interface{}) error
d.Set("availability_zone", dbInstance.AvailabilityZone)
d.Set("backup_retention_period", dbInstance.BackupRetentionPeriod)
d.Set("db_cluster_identifier", dbInstance.DBClusterIdentifier)
d.Set("db_instance_arn", dbInstance.DBClusterIdentifier)
d.Set("db_instance_arn", dbInstance.DBInstanceArn)
d.Set("db_instance_class", dbInstance.DBInstanceClass)
d.Set("db_name", dbInstance.DBName)

Expand Down

0 comments on commit 2dbbf75

Please sign in to comment.