文档没有显示示例,所以我不清楚。应该如何正确显示?
resource "aws_cloudfront_distribution" "this" {
...
default_cache_behavior {
max_ttl = 86400
forwarded_values {
# which option?
headers = ["Cache-Control max-age"]
headers = ["Cache-Control: max-age"]
headers = ["Cache-Control-max-age"]
headers = ["something else?"]
....
标头Cache-Control: max-age=86400
具有关键字:Cache-Control
和值:max-age=86400
。您只需要使用名称Cache-Control
,而不需要使用max-age
部分。