mirror of
https://github.com/puppetmaster/typhoon.git
synced 2024-12-25 19:59:34 +01:00
Output resource_group_id in Azure (#577)
* Add an output variable `resource_group_id` to the azure module
This commit is contained in:
parent
d4573092b5
commit
38957163cb
@ -19,6 +19,10 @@ output "resource_group_name" {
|
|||||||
value = azurerm_resource_group.cluster.name
|
value = azurerm_resource_group.cluster.name
|
||||||
}
|
}
|
||||||
|
|
||||||
|
output "resource_group_id" {
|
||||||
|
value = azurerm_resource_group.cluster.id
|
||||||
|
}
|
||||||
|
|
||||||
output "subnet_id" {
|
output "subnet_id" {
|
||||||
value = azurerm_subnet.worker.id
|
value = azurerm_subnet.worker.id
|
||||||
}
|
}
|
||||||
@ -53,4 +57,3 @@ output "backend_address_pool_id" {
|
|||||||
description = "ID of the worker backend address pool"
|
description = "ID of the worker backend address pool"
|
||||||
value = azurerm_lb_backend_address_pool.worker.id
|
value = azurerm_lb_backend_address_pool.worker.id
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user