please can you tell me what i am doing wrong in my...
# ask-community
v
please can you tell me what i am doing wrong in my prefect deployment via terraform - the flow takes in no parameter
resource "prefect_deployment" "deployment" {
name                     = "Bows Monitory"
description              = "string"
workspace_id             = var.prefect_cloud_workspace_id
flow_id                  = prefect_flow.flow.id
entrypoint               = "bows_monitoring.py:run_blows_monitoring"
tags                     = ["staging"]
enforce_parameter_schema = false
paused              = false
storage_document_id = var.prefect_github_repo
version             = "v1.1.1"
work_pool_name      = "main"
work_queue_name     = "default"
}