-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoutputs.tf
20 lines (20 loc) · 887 Bytes
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
output "container_id" {
description = "The ID of the storage container created for terraform backend state."
value = azurerm_storage_container.tfstate.id
}
output "container_name" {
description = "Name of the storage container created for terraform backend state."
value = azurerm_storage_container.tfstate.name
}
output "container_resource_manager_id" {
description = "The Resource Manager ID of the storage container created for terraform backend state."
value = azurerm_storage_container.tfstate.resource_manager_id
}
output "resource_group_name" {
description = "Name of the resource group created for terraform backend state."
value = azurerm_resource_group.tfstate.name
}
output "storage_account_name" {
description = "Name of the storage account created for terraform backend state."
value = azurerm_storage_account.tfstate.name
}