From d80f643350c2096bd0f080d24775a3654519d4fe Mon Sep 17 00:00:00 2001 From: Nikhil Bhoyar Date: Sat, 21 Dec 2024 05:29:17 +0000 Subject: [PATCH] fmt --- examples/autokey_setup/README.md | 4 ++-- examples/autokey_setup/main.tf | 6 +++--- examples/bucket_setup_using_autokey/README.md | 2 +- examples/bucket_setup_using_autokey/main.tf | 4 ++-- modules/autokey/README.md | 2 +- 5 files changed, 9 insertions(+), 9 deletions(-) diff --git a/examples/autokey_setup/README.md b/examples/autokey_setup/README.md index eb8e06e..45e2861 100644 --- a/examples/autokey_setup/README.md +++ b/examples/autokey_setup/README.md @@ -8,14 +8,14 @@ This example illustrates how to setup the `autokey` kms submodule for [KMS Autok | Name | Description | Type | Default | Required | |------|-------------|------|---------|:--------:| | folder\_id | The ID of the folder for which to configure and enable Autokey feature. | `string` | n/a | yes | -| kms\_project\_id | The ID of the project in which KMS keyring and KMS keys will be provisioned by autokey. | `string` | n/a | yes | +| key\_project\_id | The ID of the project in which KMS keyring and KMS keys will be provisioned by autokey. | `string` | n/a | yes | ## Outputs | Name | Description | |------|-------------| | autokey\_config\_id | An Autokey configuration identifier. | -| kms\_project\_id | The ID of the project in which kms keyring and kms keys will be provisioned by autokey. | +| key\_project\_id | The ID of the project in which kms keyring and kms keys will be provisioned by autokey. | diff --git a/examples/autokey_setup/main.tf b/examples/autokey_setup/main.tf index 05fa018..ba893b8 100644 --- a/examples/autokey_setup/main.tf +++ b/examples/autokey_setup/main.tf @@ -15,10 +15,10 @@ */ module "autokey" { - source = "terraform-google-modules/kms/google//modules/autokey" + source = "terraform-google-modules/kms/google//modules/autokey" version = "~> 4.0" - key_project_id = var.key_project_id - autokey_folder_number = var.folder_id + key_project_id = var.key_project_id + autokey_folder_number = var.folder_id } diff --git a/examples/bucket_setup_using_autokey/README.md b/examples/bucket_setup_using_autokey/README.md index 6cffd0c..711c277 100644 --- a/examples/bucket_setup_using_autokey/README.md +++ b/examples/bucket_setup_using_autokey/README.md @@ -9,7 +9,7 @@ This example illustrates how to use the `autokey` kms submodule for [KMS Autokey |------|-------------|------|---------|:--------:| | bucket\_location | The GCP location where storage bucket will be created | `string` | `"us-central1"` | no | | folder\_id | The ID of the folder for which to configure and enable Autokey feature. | `string` | n/a | yes | -| kms\_project\_id | The ID of the project in which KMS keyring and KMS keys will be provisioned by autokey. | `string` | n/a | yes | +| key\_project\_id | The ID of the project in which KMS keyring and KMS keys will be provisioned by autokey. | `string` | n/a | yes | | resource\_project\_id | The ID of the project in which to provision cloud storage bucket resource. | `string` | n/a | yes | ## Outputs diff --git a/examples/bucket_setup_using_autokey/main.tf b/examples/bucket_setup_using_autokey/main.tf index ad9ddd0..8abb460 100644 --- a/examples/bucket_setup_using_autokey/main.tf +++ b/examples/bucket_setup_using_autokey/main.tf @@ -18,8 +18,8 @@ module "autokey" { source = "terraform-google-modules/kms/google//modules/autokey" version = "~> 4.0" - key_project_id = var.key_project_id - autokey_folder_number = var.folder_id + key_project_id = var.key_project_id + autokey_folder_number = var.folder_id } # Wait delay for autokey configuration. diff --git a/modules/autokey/README.md b/modules/autokey/README.md index ef6d37d..59d223e 100644 --- a/modules/autokey/README.md +++ b/modules/autokey/README.md @@ -7,7 +7,7 @@ This is a submodule built to make [KMS Autokey](https://cloud.google.com/kms/doc | Name | Description | Type | Default | Required | |------|-------------|------|---------|:--------:| | autokey\_folder\_number | The folder number on which autokey will be configured and enabled. Required when using Autokey. | `string` | n/a | yes | -| autokey\_kms\_project\_id | The ID of the project in which kms keyrings and keys will be provisioned by the Autokey. | `string` | n/a | yes | +| key\_project\_id | The ID of the project in which kms keyrings and keys will be provisioned by the Autokey. | `string` | n/a | yes | ## Outputs