We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b54907b commit 6e3f803Copy full SHA for 6e3f803
2 files changed
README.md
@@ -164,6 +164,10 @@ Default: `null`
164
165
The following outputs are exported:
166
167
+### <a name="output_location"></a> [location](#output\_location)
168
+
169
+Description: The location of the resource group
170
171
### <a name="output_name"></a> [name](#output\_name)
172
173
Description: The name of the resource group
outputs.tf
@@ -12,3 +12,8 @@ output "resource_id" {
12
description = "The resource Id of the resource group"
13
value = azurerm_resource_group.this.id
14
}
15
16
+output "location" {
17
+ description = "The location of the resource group"
18
+ value = azurerm_resource_group.this.location
19
+}
0 commit comments