Merge pull request #1826 from nabeken/iam-instance-profile-arn

provider/aws: Update ARN in instanceProfileReadResult
This commit is contained in:
Mitchell Hashimoto 2015-05-06 09:01:42 -07:00
commit f5ae13c0b4
1 changed files with 3 additions and 0 deletions

View File

@ -189,6 +189,9 @@ func instanceProfileReadResult(d *schema.ResourceData, result *iam.InstanceProfi
if err := d.Set("name", result.InstanceProfileName); err != nil {
return err
}
if err := d.Set("arn", result.ARN); err != nil {
return err
}
if err := d.Set("path", result.Path); err != nil {
return err
}