Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 2613075

Browse files
committedMar 6, 2024
testing
1 parent 95e53e4 commit 2613075

File tree

1 file changed

+2
-2
lines changed
  • modules/data_warehouse/workflow_polling

1 file changed

+2
-2
lines changed
 

‎modules/data_warehouse/workflow_polling/main.tf

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ data "http" "call_workflows_state" {
3838

3939
## Parse out the workflow execution state from the API call response
4040
locals {
41-
response_body = jsondecode(data.http.call_workflows_state.response_body)
42-
workflow_state = jsonencode(local.response_body.executions[0].state)
41+
response_body = data.http.call_workflows_state.response_body
42+
workflow_state = local.response_body.executions[0].state
4343
depends_on = [
4444
time_sleep.workflow_execution_wait,
4545
data.http.call_workflows_state

0 commit comments

Comments
 (0)
Please sign in to comment.