mirror of https://github.com/databricks/cli.git
This commit is contained in:
parent
17698a5147
commit
5b6ffd57bf
|
@ -20,8 +20,12 @@ Due to your customized provider installation methods, Terraform was forced to
|
||||||
calculate lock file checksums locally for the following providers:
|
calculate lock file checksums locally for the following providers:
|
||||||
- databricks/databricks
|
- databricks/databricks
|
||||||
|
|
||||||
|
darwin_arm64, so Terraform running on another platform will fail to install
|
||||||
|
these providers.
|
||||||
|
|
||||||
To calculate additional checksums for another platform, run:
|
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!
|
Terraform has been successfully initialized!
|
||||||
|
|
||||||
|
|
|
@ -14,7 +14,7 @@ import (
|
||||||
var OverwriteMode = false
|
var OverwriteMode = false
|
||||||
|
|
||||||
func init() {
|
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 {
|
func ReadFile(t testutil.TestingT, ctx context.Context, filename string) string {
|
||||||
|
|
Loading…
Reference in New Issue