From cc54a5b407182a0985f1197f742f72956024824a Mon Sep 17 00:00:00 2001
From: huayuenh <48723418+huayuenh@users.noreply.github.com>
Date: Wed, 4 Sep 2024 17:14:14 +0100
Subject: [PATCH] ci: pin hashicorp versions (#472)
---
README.md | 10 +++++-----
version.tf | 4 ++--
2 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/README.md b/README.md
index 663a36cb..b0c282f6 100644
--- a/README.md
+++ b/README.md
@@ -58,8 +58,8 @@ statement instead the previous block.
|------|---------|
| [terraform](#requirement\_terraform) | >= 1.0.0 |
| [ibm](#requirement\_ibm) | =1.67.1 |
-| [null](#requirement\_null) | >= 3.2.2 |
-| [random](#requirement\_random) | >= 3.6.2 |
+| [null](#requirement\_null) | = 3.2.2 |
+| [random](#requirement\_random) | = 3.6.2 |
### Modules
@@ -83,9 +83,9 @@ statement instead the previous block.
| [ibm_cd_tekton_pipeline_trigger_property.ci_pipeline_webhook_repo_url_property](https://registry.terraform.io/providers/IBM-Cloud/ibm/1.67.1/docs/resources/cd_tekton_pipeline_trigger_property) | resource |
| [ibm_cr_namespace.cr_namespace](https://registry.terraform.io/providers/IBM-Cloud/ibm/1.67.1/docs/resources/cr_namespace) | resource |
| [ibm_resource_instance.cd_instance](https://registry.terraform.io/providers/IBM-Cloud/ibm/1.67.1/docs/resources/resource_instance) | resource |
-| [null_resource.ci_pipeline_run](https://registry.terraform.io/providers/hashicorp/null/latest/docs/resources/resource) | resource |
-| [random_string.resource_suffix](https://registry.terraform.io/providers/hashicorp/random/latest/docs/resources/string) | resource |
-| [random_string.webhook_secret](https://registry.terraform.io/providers/hashicorp/random/latest/docs/resources/string) | resource |
+| [null_resource.ci_pipeline_run](https://registry.terraform.io/providers/hashicorp/null/3.2.2/docs/resources/resource) | resource |
+| [random_string.resource_suffix](https://registry.terraform.io/providers/hashicorp/random/3.6.2/docs/resources/string) | resource |
+| [random_string.webhook_secret](https://registry.terraform.io/providers/hashicorp/random/3.6.2/docs/resources/string) | resource |
| [ibm_resource_group.resource_group](https://registry.terraform.io/providers/IBM-Cloud/ibm/1.67.1/docs/data-sources/resource_group) | data source |
### Inputs
diff --git a/version.tf b/version.tf
index 1fc320db..13773a8c 100644
--- a/version.tf
+++ b/version.tf
@@ -9,12 +9,12 @@ terraform {
random = {
source = "hashicorp/random"
- version = ">= 3.6.2"
+ version = "= 3.6.2"
}
null = {
source = "hashicorp/null"
- version = ">= 3.2.2"
+ version = "= 3.2.2"
}
}
}