From 5d67e1cca07085475738541f6985b63187379c2b Mon Sep 17 00:00:00 2001 From: Stefano Sibilia Date: Mon, 4 Nov 2024 15:35:27 +0100 Subject: [PATCH] fix: remove template provider and fix example --- examples/main.tf | 6 +----- examples/outputs.tf | 12 ------------ versions.tf | 6 +----- 3 files changed, 2 insertions(+), 22 deletions(-) diff --git a/examples/main.tf b/examples/main.tf index 53c1285..8baf032 100644 --- a/examples/main.tf +++ b/examples/main.tf @@ -11,12 +11,8 @@ terraform { source = "hashicorp/kubernetes" version = ">= 2.19" } - template = { - source = "hashicorp/template" - version = ">= 2.2.0" - } random = { - source = "hashicorp/random" + source = "hashicorp/random" version = "3.6.2" } } diff --git a/examples/outputs.tf b/examples/outputs.tf index 6242743..e8a9f74 100644 --- a/examples/outputs.tf +++ b/examples/outputs.tf @@ -9,15 +9,3 @@ output "drupal_apps_bucket_credentials" { description = "Drupal apps bucket credentials for each Drupal project." value = module.drupal_resources.drupal_apps_bucket_credentials } - -output "helm_values_for_buckets" { - sensitive = true - description = "Helm values for buckets to be entered into the gitlab pipeline" - value = module.drupal_resources.helm_values_for_buckets -} - -output "helm_values_for_databases" { - sensitive = true - description = "Helm values for databases to be entered into the gitlab pipeline" - value = module.drupal_resources.helm_values_for_databases -} diff --git a/versions.tf b/versions.tf index 21a5387..593c047 100644 --- a/versions.tf +++ b/versions.tf @@ -11,12 +11,8 @@ terraform { source = "hashicorp/kubernetes" version = ">= 2.19" } - template = { - source = "hashicorp/template" - version = ">= 2.2.0" - } random = { - source = "hashicorp/random" + source = "hashicorp/random" version = "3.6.2" } }