provider/aws: Set previously missing ARN in iam_saml_provider

- fixes https://github.com/hashicorp/terraform/issues/3820
This commit is contained in:
Radek Simko 2015-11-09 17:07:31 +01:00
parent deb17b90eb
commit cf5cfdbff0
1 changed files with 1 additions and 0 deletions

View File

@ -68,6 +68,7 @@ func resourceAwsIamSamlProviderRead(d *schema.ResourceData, meta interface{}) er
}
validUntil := out.ValidUntil.Format(time.RFC1123)
d.Set("arn", d.Id())
d.Set("valid_until", validUntil)
d.Set("saml_metadata_document", *out.SAMLMetadataDocument)