From c6ff465c48a0722819444af700f98e1d909c9f99 Mon Sep 17 00:00:00 2001 From: "nilesh.gadgi" Date: Mon, 26 Dec 2022 21:54:20 +0530 Subject: [PATCH] now output added & deprecation fixed --- README.md | 6 +++--- _example/outputs.tf | 6 +++--- outputs.tf | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/README.md b/README.md index 49d47d4..f5df44e 100644 --- a/README.md +++ b/README.md @@ -111,9 +111,9 @@ Here is an example of how you can use this module in your inventory structure: | Name | Description | |------|-------------| | resource\_group\_id | The ID of the Resource Group. | -| resource\_group\_location | The ID of the Resource Group. | -| resource\_group\_name | The ID of the Resource Group. | -| tags | The tags associated to resources. | +| resource\_group\_location | The Azure Region where the Resource Group should exist. Changing this forces a new Resource Group to be created. | +| resource\_group\_name | The Name which should be used for this Resource Group. Changing this forces a new Resource Group to be created. | +| tags | A mapping of tags which should be assigned to the Resource Group. | diff --git a/_example/outputs.tf b/_example/outputs.tf index 2bd39b5..dbb95f5 100644 --- a/_example/outputs.tf +++ b/_example/outputs.tf @@ -5,15 +5,15 @@ output "resource_group_id" { output "resource_group_name" { value = module.resource_group.resource_group_name - description = "The name of the Resource Group." + description = "The Name which should be used for this Resource Group. Changing this forces a new Resource Group to be created." } output "resource_group_location" { value = module.resource_group.resource_group_location - description = "The location of the Resource Group." + description = "The Azure Region where the Resource Group should exist. Changing this forces a new Resource Group to be created." } output "tags" { value = module.resource_group.tags - description = "The tags associated to resources." + description = "A mapping of tags which should be assigned to the Resource Group." } diff --git a/outputs.tf b/outputs.tf index eb90a21..48de2a2 100644 --- a/outputs.tf +++ b/outputs.tf @@ -5,15 +5,15 @@ output "resource_group_id" { output "resource_group_name" { value = join("", azurerm_resource_group.default.*.name) - description = "The name of the Resource Group." + description = "The Name which should be used for this Resource Group. Changing this forces a new Resource Group to be created." } output "resource_group_location" { value = join("", azurerm_resource_group.default.*.location) - description = "The location of the Resource Group." + description = "The Azure Region where the Resource Group should exist. Changing this forces a new Resource Group to be created." } output "tags" { value = module.labels.tags - description = "The tags associated to resources." + description = "A mapping of tags which should be assigned to the Resource Group." }