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