diff --git a/aws/cloudfront_distribution_configuration_structure.go b/aws/cloudfront_distribution_configuration_structure.go index fb615f95a6f2..68bdc6845a61 100644 --- a/aws/cloudfront_distribution_configuration_structure.go +++ b/aws/cloudfront_distribution_configuration_structure.go @@ -1103,7 +1103,7 @@ func flattenCloudfrontActiveTrustedSigners(ats *cloudfront.ActiveTrustedSigners) m := map[string]interface{}{ "enabled": aws.BoolValue(ats.Enabled), - "items": flattenCloudfrontSigners(ats.Items), + "items": flattenCloudfrontSigners(ats.Items), } return []interface{}{m} diff --git a/aws/resource_aws_cloudfront_distribution.go b/aws/resource_aws_cloudfront_distribution.go index 1b4ca4f023eb..b68c39efa262 100644 --- a/aws/resource_aws_cloudfront_distribution.go +++ b/aws/resource_aws_cloudfront_distribution.go @@ -697,7 +697,7 @@ func resourceAwsCloudFrontDistribution() *schema.Resource { "active_trusted_signers": { Type: schema.TypeList, Computed: true, - Elem: &schema.Resource{ + Elem: &schema.Resource{ Schema: map[string]*schema.Schema{ "enabled": { Type: schema.TypeBool, @@ -706,7 +706,7 @@ func resourceAwsCloudFrontDistribution() *schema.Resource { "items": { Type: schema.TypeList, Computed: true, - Elem: &schema.Resource{ + Elem: &schema.Resource{ Schema: map[string]*schema.Schema{ "aws_account_number": { Type: schema.TypeString, diff --git a/website/docs/r/cloudfront_distribution.html.markdown b/website/docs/r/cloudfront_distribution.html.markdown index b81e495030ee..1373c164ad5b 100644 --- a/website/docs/r/cloudfront_distribution.html.markdown +++ b/website/docs/r/cloudfront_distribution.html.markdown @@ -527,11 +527,11 @@ In addition to all arguments above, the following attributes are exported: distribution's information is fully propagated throughout the Amazon CloudFront system. - * `active_trusted_signers` - Nested attributes of trusted signers that CloudFront is aware, if the distribution is set up to serve private content with signed URLs. - * `enabled` - Enabled is `true` if any of the AWS accounts listed as trusted signers have active CloudFront key pairs. - * `items` - Nested attributes of each trusted signer. + * `active_trusted_signers` - Nested attributes of active trusted signers, if the distribution is set up to serve private content with signed URLs + * `enabled` - `true` if any of the AWS accounts listed as trusted signers have active CloudFront key pairs + * `items` - Nested attributes of each trusted signer * `aws_account_number` - AWS account ID or `self` - * `key_pair_ids` - Set of active CloudFront key pairs associated with the signer account. + * `key_pair_ids` - Set of active CloudFront key pairs associated with the signer account * `domain_name` - The domain name corresponding to the distribution. For example: `d604721fxaaqy9.cloudfront.net`.