provider/aws: Update ARN in instanceProfileReadResult

This commit is contained in:
TANABE Ken-ichi 2015-05-07 00:26:57 +09:00
parent 010a39a58e
commit 5be4ecdcdb
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
}