-
Notifications
You must be signed in to change notification settings - Fork 0
/
outputs.tf
29 lines (24 loc) · 960 Bytes
/
outputs.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
# Output variable: Blob Storage container name
# output "blob_storage_container" {
# value = "https://${azurerm_storage_account.terraform_state.name}.blob.core.windows.net/${azurerm_storage_container.terraform_state.name}/"
# }
output "resource_group_name" {
description = "Name of the created resource group"
value = azurerm_resource_group.tfexample.name
}
output "storage_account_id" {
description = "ID of the created storage account"
value = azurerm_storage_account.terraform_state.id
}
output "storage_account_name" {
description = "Name of the created storage account"
value = azurerm_storage_account.terraform_state.name
}
output "primary_blob_endpoint" {
description = "Primary blob endpoint"
value = azurerm_storage_account.terraform_state.primary_blob_endpoint
}
output "container_name" {
description = "Names of the created containers"
value = azurerm_storage_container.terraform_state.name
}