Skip to content

Commit

Permalink
Merge pull request #1826 from nabeken/iam-instance-profile-arn
Browse files Browse the repository at this point in the history
provider/aws: Update ARN in instanceProfileReadResult
  • Loading branch information
mitchellh committed May 6, 2015
2 parents 010a39a + 5be4ecd commit f5ae13c
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions builtin/providers/aws/resource_aws_iam_instance_profile.go
Original file line number Diff line number Diff line change
Expand Up @@ -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
}
Expand Down

0 comments on commit f5ae13c

Please sign in to comment.