From da423ce0fe2e09f069d12a766a2c6fa9149fb4fc Mon Sep 17 00:00:00 2001 From: Alex Jurkiewicz Date: Thu, 27 Jul 2023 08:01:08 +0800 Subject: [PATCH] Correct a comment (#239) Co-authored-by: cloudpossebot <11232728+cloudpossebot@users.noreply.github.com> Co-authored-by: Max Lobur Co-authored-by: Joe Niland --- README.md | 2 +- docs/terraform.md | 2 +- variables.tf | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5b8bdabc..58dd1f17 100644 --- a/README.md +++ b/README.md @@ -497,7 +497,7 @@ Available targets: | [cloudfront\_access\_logging\_enabled](#input\_cloudfront\_access\_logging\_enabled) | Set true to enable delivery of Cloudfront Access Logs to an S3 bucket | `bool` | `true` | no | | [cloudfront\_origin\_access\_identity\_iam\_arn](#input\_cloudfront\_origin\_access\_identity\_iam\_arn) | Existing cloudfront origin access identity iam arn that is supplied in the s3 bucket policy | `string` | `""` | no | | [cloudfront\_origin\_access\_identity\_path](#input\_cloudfront\_origin\_access\_identity\_path) | Existing cloudfront origin access identity path used in the cloudfront distribution's s3\_origin\_config content | `string` | `""` | no | -| [comment](#input\_comment) | Comment for the origin access identity | `string` | `"Managed by Terraform"` | no | +| [comment](#input\_comment) | Comment for the CloudFront distribution | `string` | `"Managed by Terraform"` | no | | [compress](#input\_compress) | Compress content for web requests that include Accept-Encoding: gzip in the request header | `bool` | `true` | no | | [context](#input\_context) | Single object for setting entire context at once.
See description of individual variables for details.
Leave string and numeric variables as `null` to use default value.
Individual variable settings (non-null) override settings in context object,
except for attributes, tags, and additional\_tag\_map, which are merged. | `any` |
{
"additional_tag_map": {},
"attributes": [],
"delimiter": null,
"descriptor_formats": {},
"enabled": true,
"environment": null,
"id_length_limit": null,
"label_key_case": null,
"label_order": [],
"label_value_case": null,
"labels_as_tags": [
"unset"
],
"name": null,
"namespace": null,
"regex_replace_chars": null,
"stage": null,
"tags": {},
"tenant": null
}
| no | | [cors\_allowed\_headers](#input\_cors\_allowed\_headers) | List of allowed headers for S3 bucket | `list(string)` |
[
"*"
]
| no | diff --git a/docs/terraform.md b/docs/terraform.md index 4a2f5c84..ff4cf8a0 100644 --- a/docs/terraform.md +++ b/docs/terraform.md @@ -69,7 +69,7 @@ | [cloudfront\_access\_logging\_enabled](#input\_cloudfront\_access\_logging\_enabled) | Set true to enable delivery of Cloudfront Access Logs to an S3 bucket | `bool` | `true` | no | | [cloudfront\_origin\_access\_identity\_iam\_arn](#input\_cloudfront\_origin\_access\_identity\_iam\_arn) | Existing cloudfront origin access identity iam arn that is supplied in the s3 bucket policy | `string` | `""` | no | | [cloudfront\_origin\_access\_identity\_path](#input\_cloudfront\_origin\_access\_identity\_path) | Existing cloudfront origin access identity path used in the cloudfront distribution's s3\_origin\_config content | `string` | `""` | no | -| [comment](#input\_comment) | Comment for the origin access identity | `string` | `"Managed by Terraform"` | no | +| [comment](#input\_comment) | Comment for the CloudFront distribution | `string` | `"Managed by Terraform"` | no | | [compress](#input\_compress) | Compress content for web requests that include Accept-Encoding: gzip in the request header | `bool` | `true` | no | | [context](#input\_context) | Single object for setting entire context at once.
See description of individual variables for details.
Leave string and numeric variables as `null` to use default value.
Individual variable settings (non-null) override settings in context object,
except for attributes, tags, and additional\_tag\_map, which are merged. | `any` |
{
"additional_tag_map": {},
"attributes": [],
"delimiter": null,
"descriptor_formats": {},
"enabled": true,
"environment": null,
"id_length_limit": null,
"label_key_case": null,
"label_order": [],
"label_value_case": null,
"labels_as_tags": [
"unset"
],
"name": null,
"namespace": null,
"regex_replace_chars": null,
"stage": null,
"tags": {},
"tenant": null
}
| no | | [cors\_allowed\_headers](#input\_cors\_allowed\_headers) | List of allowed headers for S3 bucket | `list(string)` |
[
"*"
]
| no | diff --git a/variables.tf b/variables.tf index f68e3480..256a445b 100644 --- a/variables.tf +++ b/variables.tf @@ -82,7 +82,7 @@ variable "default_root_object" { variable "comment" { type = string default = "Managed by Terraform" - description = "Comment for the origin access identity" + description = "Comment for the CloudFront distribution" } variable "log_standard_transition_days" {