msp: upgrade to Terraform 1.3.10 (#59559)

Eyeing potentially upgrading our Terraform version to the latest ones eventually, as we started pretty far behind because I copy-pasta'd some old configs from elsewhere. The release notes of the latest one https://github.com/hashicorp/terraform/releases/tag/v1.7.0-rc2 mentions that upgraders should be on the latest patch of their `major.minor` release, which for us means 1.3.10. This should be safe to do as it's just patches.
This commit is contained in:
Robert Lin 2024-01-16 17:48:32 -08:00 committed by GitHub
parent 5d1187641a
commit fae3000fb9
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -2,7 +2,7 @@ package terraform
import "os"
const defaultVersion = "1.3.3"
const defaultVersion = "1.3.10"
// Version is the version of Terraform to use, configurable by MSP_TERRAFORM_VERSION
var Version = func() string {