We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6167f15 commit 0e97232Copy full SHA for 0e97232
modules/data_warehouse/workflow_polling/main.tf
@@ -38,7 +38,7 @@ data "http" "call_workflows_state" {
38
39
## Parse out the workflow execution state from the API call response
40
locals {
41
- response_body = data.http.call_workflows_state.response_body
+ response_body = jsondecode(data.http.call_workflows_state.response_body)
42
workflow_state = local.response_body.executions[0].state
43
depends_on = [
44
time_sleep.workflow_execution_wait,
0 commit comments