diff options
| author | Alex Schofield <git@ajschof.me> | 2024-08-19 21:52:15 +0100 |
|---|---|---|
| committer | Alex Schofield <git@ajschof.me> | 2024-08-19 21:52:15 +0100 |
| commit | ce2761b311523a118cdead885ba7fcf1f7a4cd68 (patch) | |
| tree | 7434b978db351717d0679422e580919bcaf852ca | |
| parent | c091506dc8e01741f54f9a8d289515c8d5ffbecf (diff) | |
| download | de-project-bentley-ce2761b311523a118cdead885ba7fcf1f7a4cd68.tar.gz de-project-bentley-ce2761b311523a118cdead885ba7fcf1f7a4cd68.zip | |
fix(tf): correct random_string to random in main.tf
| -rw-r--r-- | terraform/main.tf | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/terraform/main.tf b/terraform/main.tf index ad7b335..6577b70 100644 --- a/terraform/main.tf +++ b/terraform/main.tf @@ -13,7 +13,7 @@ terraform { source = "hashicorp/archive" version = "~>2.5.0" } - random_string = { + random = { source = "hashicorp/random" version = "~>3.6.2" } |
