Closed JeffGiroux closed 1 year ago
There was a previous fix for the data template_file. However, the provider block for template still remains, and this still causes errors on the M1 Macbooks. See previous ticket.
https://github.com/F5Networks/terraform-azure-bigip-module/issues/38
currently...
terraform { required_version = ">= 0.14.5" required_providers { azurerm = { source = "hashicorp/azurerm" version = ">= 3" } random = { source = "hashicorp/random" version = ">2.3.0" } template = { source = "hashicorp/template" version = ">2.1.2" } null = { source = "hashicorp/null" version = ">2.1.2" } } }
Needs to remove template block and look like this...
terraform { required_version = ">= 0.14.5" required_providers { azurerm = { source = "hashicorp/azurerm" version = ">= 3" } random = { source = "hashicorp/random" version = ">2.3.0" } null = { source = "hashicorp/null" version = ">2.1.2" } } }
fixed in v1.2.6
There was a previous fix for the data template_file. However, the provider block for template still remains, and this still causes errors on the M1 Macbooks. See previous ticket.
https://github.com/F5Networks/terraform-azure-bigip-module/issues/38
currently...
Needs to remove template block and look like this...