Stream analytics azure connection to storage account

Hi friends! I created the stream analytics resource (via terraforms) and for its full
work (launch) requires connection to a storage account (I used this article and the job_storage_account parameter)

https://registry.terraform.io/providers/hashicorp/azurerm/latest/docs/resources/stream_analytics_job

job_storage_account {
    authentication_mode = "ConnectionString"
    account_key         = “connection string”
    account_name        = “name storage account”
  }

But when adding the parameter - job_storage_account, nothing happens, as if terraform does not see it.

Maybe need to configure the connection with the storage account differently?