Skip to content

Commit 78bf04a

Browse files
committed
update version constraints
1 parent a0512a6 commit 78bf04a

File tree

2 files changed

+9
-1
lines changed

2 files changed

+9
-1
lines changed

modules/data_warehouse/versions.tf

+8
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,10 @@ terraform {
2424
source = "hashicorp/google-beta"
2525
version = ">= 4.52, < 6"
2626
}
27+
archive = {
28+
source = "hashicorp/archive"
29+
version = "2.4.2"
30+
}
2731
time = {
2832
source = "hashicorp/time"
2933
version = ">= 0.9.1"
@@ -36,6 +40,10 @@ terraform {
3640
source = "hashicorp/local"
3741
version = ">=2.4"
3842
}
43+
random = {
44+
source = "hashicorp/random"
45+
version = "3.6.0"
46+
}
3947
}
4048
required_version = ">= 0.13"
4149

modules/data_warehouse/workflow_polling/main.tf

+1-1
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ locals {
4545
## Output the workflow state to use as input for subsequent invocations
4646
output "workflow_state" {
4747
description = "State of the most recent workflow execution. Used to determine how to proceed with next polling run."
48-
value = local.workflow_state
48+
value = local.workflow_state
4949
}
5050

5151
## If workflow execution is actively running, sleep for 90 seconds to allow it to finish

0 commit comments

Comments
 (0)