Terraform AWS ALB 模块:禁用 HTTP/2
Terraform AWS ALB Module: disable HTTP/2
遵循 Terraform 的 alb 模块的说明 https://registry.terraform.io/modules/terraform-aws-modules/alb/aws/latest
我不明白如何禁用 HTTP/2
你能帮帮我吗?
根据模块要求判断,enable_http2
变量是可选的 [1],默认设置为 true
。您可以通过在调用模块时添加此变量并将其设置为 false
:
来更改它
enable_http2 = false
[1] https://github.com/terraform-aws-modules/terraform-aws-alb/blob/master/variables.tf#L19-L23
遵循 Terraform 的 alb 模块的说明 https://registry.terraform.io/modules/terraform-aws-modules/alb/aws/latest
我不明白如何禁用 HTTP/2 你能帮帮我吗?
根据模块要求判断,enable_http2
变量是可选的 [1],默认设置为 true
。您可以通过在调用模块时添加此变量并将其设置为 false
:
enable_http2 = false
[1] https://github.com/terraform-aws-modules/terraform-aws-alb/blob/master/variables.tf#L19-L23