File tree Expand file tree Collapse file tree 4 files changed +11
-4
lines changed
Expand file tree Collapse file tree 4 files changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -9,8 +9,8 @@ This module creates following resources.
99
1010| Name | Version |
1111| ------| ---------|
12- | <a name =" requirement_terraform " ></a > [ terraform] ( #requirement\_ terraform ) | >= 1.6 |
13- | <a name =" requirement_aws " ></a > [ aws] ( #requirement\_ aws ) | >= 5.19 |
12+ | <a name =" requirement_terraform " ></a > [ terraform] ( #requirement\_ terraform ) | >= 1.12 |
13+ | <a name =" requirement_aws " ></a > [ aws] ( #requirement\_ aws ) | >= 6.20 |
1414
1515## Providers
1616
@@ -49,6 +49,7 @@ No modules.
4949
5050| Name | Description |
5151| ------| -------------|
52+ | <a name =" output_arn " ></a > [ arn] ( #output\_ arn ) | The ARN of the CloudFront response headers policy. |
5253| <a name =" output_cors " ></a > [ cors] ( #output\_ cors ) | A configuration for a set of HTTP response headers for CORS(Cross-Origin Resource Sharing). |
5354| <a name =" output_custom_headers " ></a > [ custom\_ headers] ( #output\_ custom\_ headers ) | A configuration for custom headers in the response headers. |
5455| <a name =" output_description " ></a > [ description] ( #output\_ description ) | The description of the response headers policy. |
Original file line number Diff line number Diff line change 1+ output "arn" {
2+ description = " The ARN of the CloudFront response headers policy."
3+ value = aws_cloudfront_response_headers_policy. this . arn
4+ }
5+
16output "id" {
27 description = " The identifier for the CloudFront response headers policy."
38 value = aws_cloudfront_response_headers_policy. this . id
Original file line number Diff line number Diff line change 11variable "name" {
22 description = " (Required) A unique name to identify the CloudFront Origin Request Policy."
33 type = string
4+ nullable = false
45}
56
67variable "description" {
Original file line number Diff line number Diff line change 11terraform {
2- required_version = " >= 1.6 "
2+ required_version = " >= 1.12 "
33
44 required_providers {
55 aws = {
66 source = " hashicorp/aws"
7- version = " >= 5.19 "
7+ version = " >= 6.20 "
88 }
99 }
1010}
You can’t perform that action at this time.
0 commit comments