Skip to content

Commit

Permalink
Merge pull request #5 from clouddrove/internal-274-n
Browse files Browse the repository at this point in the history
Fixed the description string.
  • Loading branch information
d4kverma authored Dec 27, 2022
2 parents e49e94a + c6ff465 commit c4c69b7
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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. |



Expand Down
2 changes: 1 addition & 1 deletion _example/example.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ provider "azurerm" {
module "resource_group" {
source = "../"

environment = "test"
environment = "tested"
label_order = ["name", "environment", ]

name = "example"
Expand Down
6 changes: 3 additions & 3 deletions _example/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -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."
}
6 changes: 3 additions & 3 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@ output "resource_group_id" {

output "resource_group_name" {
value = join("", azurerm_resource_group.default.*.name)
description = "The ID 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 ID 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."
}

0 comments on commit c4c69b7

Please sign in to comment.