Skip to content
This repository has been archived by the owner on Jan 23, 2025. It is now read-only.

Commit

Permalink
fix(azure): Bump up min_tls_value for storage adapters (#1458)
Browse files Browse the repository at this point in the history
fix(azure): Bump up min_tls_value for storage adapters
  • Loading branch information
simar7 authored Sep 20, 2023
1 parent ae308e1 commit 5f42dcd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/adapters/terraform/azure/storage/adapt.go
Original file line number Diff line number Diff line change
Expand Up @@ -128,7 +128,7 @@ func adaptAccount(resource *terraform.Block) storage.Account {
}

minTLSVersionAttr := resource.GetAttribute("min_tls_version")
account.MinimumTLSVersion = minTLSVersionAttr.AsStringValueOrDefault("TLS1_0", resource)
account.MinimumTLSVersion = minTLSVersionAttr.AsStringValueOrDefault("TLS1_2", resource)
return account
}

Expand Down

0 comments on commit 5f42dcd

Please sign in to comment.