How to create a private endpoint for azure redis cache using terraform?
I have created the private endpoint using terraform in azure redis cache. Here's the relevant part of my Terraform code: terraform { required_providers { azurerm = { source = "hashicorp/azurerm" version = ">=3.0.0" } } } provider "azurerm" { features…