Enter Azure storage account variably in Terraform main.tf
How do I pass the Terraform storage account for the backend as variable? I get the following error: #main.tf terraform { required_version = ">= 1.3" backend "azurerm" { resource_group_name = "rg-tfstate" storage_account_name = var.arg5_terraformStorageAccount container_name = "tfstate" key = "terraform.tfstate"…