From ed7d19783f5ec7edaf3a23b0c7dee91e8e2a4124 Mon Sep 17 00:00:00 2001 From: Mike Tougeron Date: Mon, 24 Oct 2016 15:10:37 -0700 Subject: [PATCH] Add 'tags' attribute to the docs for aws_cloudfront_distribution --- .../providers/aws/r/cloudfront_distribution.html.markdown | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/website/source/docs/providers/aws/r/cloudfront_distribution.html.markdown b/website/source/docs/providers/aws/r/cloudfront_distribution.html.markdown index f82e2541e..bb08deca3 100644 --- a/website/source/docs/providers/aws/r/cloudfront_distribution.html.markdown +++ b/website/source/docs/providers/aws/r/cloudfront_distribution.html.markdown @@ -75,6 +75,10 @@ resource "aws_cloudfront_distribution" "s3_distribution" { } } + tags { + Environment = "production" + } + viewer_certificate { cloudfront_default_certificate = true } @@ -127,6 +131,8 @@ of several sub-resources - these resources are laid out below. * `restrictions` (Required) - The [restriction configuration](#restrictions-arguments) for this distribution (maximum one). + * `tags` - (Optional) A mapping of tags to assign to the resource. + * `viewer_certificate` (Required) - The [SSL configuration](#viewer-certificate-arguments) for this distribution (maximum one).