mirror of
https://github.com/fleetdm/fleet
synced 2026-05-23 08:58:41 +00:00
Require TLS 1.2 in Terraform ALB listener (#10887)
This should fix tfsec https://aquasecurity.github.io/tfsec/v1.0.8/checks/aws/elb/use-secure-tls-policy/ by configuring https://registry.terraform.io/modules/terraform-aws-modules/alb/aws/6.4.0#input_listener_ssl_policy_default.
This commit is contained in:
parent
fc84da1a36
commit
24533da337
1 changed files with 3 additions and 0 deletions
|
|
@ -53,6 +53,9 @@ module "alb" {
|
|||
}
|
||||
}
|
||||
]
|
||||
|
||||
# Require TLS 1.2 as earlier versions are insecure
|
||||
listener_ssl_policy_default = "TLS-1-2-2017-01"
|
||||
|
||||
https_listeners = [
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue