I’m trying to pass a parameter to a ADF in Terraform. I’m trying to add it to azurerm_data_factory_dataset_json so we have something like this:
I was trying different approaches how to add this parameter but none of them worked.
Here’s latest piece of code:
parameters = {
name = "tempFile",
type = "String"
}
The error I’m getting is:
How to properly add String parameter to ADF? Thanks!