terraform-google-modules/terraform-google-vault

Usage of deprecated template_file

Closed this issue · 0 comments

TL;DR

The reliance on the deprecated template provider prevents the cluster submodule to initialize on darwin_arm64 (M1 mac)

Expected behavior

No response

Observed behavior

No response

Terraform Configuration

module "vault_cluster" {
	source = "terraform-google-modules/vault/google//modules/cluster"
	version = "~> 6.1.2"

	project_id                  = var.project_id
	host_project_id             = var.host_project_id
	subnet                      = var.subnet_self_link
	ip_address                  = google_compute_address.vault_lb.address
	vault_storage_bucket        = google_storage_bucket.vault.name
        vault_service_account_email = google_service_account.vault-admin.email
}

Terraform Version

❯ tf version
Terraform v1.2.2
on darwin_arm64

Additional information

No response