Skip to content

Commit

Permalink
now output added & deprecation fixed
Browse files Browse the repository at this point in the history
  • Loading branch information
nileshgadgi committed Dec 26, 2022
1 parent 87a5cbb commit c6ff465
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 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
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 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."
}

0 comments on commit c6ff465

Please sign in to comment.