From db065d1216bb5010f1f80a0c85f749058cc75571 Mon Sep 17 00:00:00 2001 From: Nikhil Bhoyar Date: Mon, 11 Nov 2024 17:27:35 +0530 Subject: [PATCH] updated comments --- examples/autokey/autokey-setup/main.tf | 5 ++--- modules/autokey/variables.tf | 4 ++-- 2 files changed, 4 insertions(+), 5 deletions(-) diff --git a/examples/autokey/autokey-setup/main.tf b/examples/autokey/autokey-setup/main.tf index aa29ea5..00f5908 100644 --- a/examples/autokey/autokey-setup/main.tf +++ b/examples/autokey/autokey-setup/main.tf @@ -15,9 +15,8 @@ */ module "autokey" { - //source = "terraform-google-modules/kms/google//modules/autokey" - source = "../../../modules/autokey" - //version = "3.1.0" + source = "terraform-google-modules/kms/google//modules/autokey" + version = "3.1.0" autokey_kms_project_id = var.kms_project_id autokey_folder_number = var.folder_id diff --git a/modules/autokey/variables.tf b/modules/autokey/variables.tf index 04555e1..79fa1b2 100644 --- a/modules/autokey/variables.tf +++ b/modules/autokey/variables.tf @@ -15,12 +15,12 @@ */ variable "autokey_kms_project_id" { - description = "The ID of the project in which to provision Autokey resources (autokey keyring and keyHandle keys)." + description = "The ID of the project in which to provision Autokey resources (autokey keyring and keys)." type = string } variable "autokey_folder_number" { type = string - description = "The Autokey folder number used by Autokey config resource. Required when using Autokey." + description = "The folder number on which autokey will be configured. Required when using Autokey." }