aws_cloudfront_distribution forwarded_values(Terraform)中标头的语



文档没有显示示例,所以我不清楚。应该如何正确显示?

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部分。

相关内容

  • 没有找到相关文章