-
Notifications
You must be signed in to change notification settings - Fork 9.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Missing darwin_arm64 binary for the hashicorp/template provider (Apple Silicon, M1) #30055
Comments
Hi @larstobi, The template provider was deprecated before Thanks! |
@jbardin data "aws_s3_bucket_object" "example" {
bucket = "example-bucket-name"
key = "example.yaml"
}
data "template_file" "example" {
template = data.aws_s3_bucket_object.example.body
vars = {
foo = "bar"
}
}
Since the If I can't make it work by other means, I can see there is a fork of your old template provider repo that has published a binary for |
It seems that the only way forward is to use a self-compiled |
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. |
If I use the
darwin_arm64
binary of terraform, then I cannot runterraform init
if I use thetemplate_file
provider.(A quick
terraform -version
will reveal if you run amd64 on Rosetta or on arm64.)The releases show that the
darwin_arm64
is in fact not published:I have checked out the source code for this and built it on my M1 macbook, and it compiles and runs without issue, so it should be a quick fix for Hashicorp to publish this binary for the same 2.2.0 version.
The text was updated successfully, but these errors were encountered: