when i do a plan - I see this ``` # module.flows.p...
# ask-community
v
when i do a plan - I see this
Copy code
# module.flows.prefect_deployment.deployment will be created  + resource "prefect_deployment" "deployment" { + created = (known after apply) + description = "string" + enforce_parameter_schema = false + entrypoint = "bows_monitoring.py:run_blows_monitoring" + flow_id = (known after apply) + id = (known after apply) + job_variables = (known after apply) + manifest_path = (known after apply) + name = "Bows Monitory" + parameter_openapi_schema = (known after apply) + parameters = jsonencode({}) + path = (known after apply) + paused = false + storage_document_id = (known after apply) + tags = [ + "staging", ] + updated = (known after apply) + version = "v1.1.1" + work_pool_name = "main" + work_queue_name = "default" + workspace_id = "c9bb6169-85cf-4b02-86c5-0ce00982fcd3" }  # module.flows.prefect_flow.flow will be created  + resource "prefect_flow" "flow" { + created = (known after apply) + id = (known after apply) + name = "bows-monitoring" + tags = [ + "tf-test", ] + updated = (known after apply) + workspace_id = "c9bb6169-85cf-4b02-86c5-0ce00982fcd3" }
which seems to suggest it is ok but after doing an apply - I get an error stating the flow already exists ? Prefect does not support using flow as a data block for already existing flows. Any guidance would be appreicated