provider/aws: Update ARN in instanceProfileReadResult
This commit is contained in:
parent
010a39a58e
commit
5be4ecdcdb
|
@ -189,6 +189,9 @@ func instanceProfileReadResult(d *schema.ResourceData, result *iam.InstanceProfi
|
||||||
if err := d.Set("name", result.InstanceProfileName); err != nil {
|
if err := d.Set("name", result.InstanceProfileName); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
if err := d.Set("arn", result.ARN); err != nil {
|
||||||
|
return err
|
||||||
|
}
|
||||||
if err := d.Set("path", result.Path); err != nil {
|
if err := d.Set("path", result.Path); err != nil {
|
||||||
return err
|
return err
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue