This commit is contained in:
Shreyas Goenka 2025-02-04 15:58:12 +01:00
parent 17698a5147
commit 5b6ffd57bf
No known key found for this signature in database
GPG Key ID: 92A07DF49CCB0622
2 changed files with 5 additions and 1 deletions

View File

@ -20,8 +20,12 @@ Due to your customized provider installation methods, Terraform was forced to
calculate lock file checksums locally for the following providers:
- databricks/databricks
darwin_arm64, so Terraform running on another platform will fail to install
these providers.
To calculate additional checksums for another platform, run:
terraform providers lock -platform=linux_amd64
(where linux_amd64 is the platform to generate)
Terraform has been successfully initialized!

View File

@ -14,7 +14,7 @@ import (
var OverwriteMode = false
func init() {
flag.BoolVar(&OverwriteMode, "update", true, "Overwrite golden files")
flag.BoolVar(&OverwriteMode, "update", false, "Overwrite golden files")
}
func ReadFile(t testutil.TestingT, ctx context.Context, filename string) string {