-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathoutputs.tf
More file actions
37 lines (28 loc) · 1.13 KB
/
outputs.tf
File metadata and controls
37 lines (28 loc) · 1.13 KB
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
30
31
32
33
34
35
36
37
# Output variables for Resource group
output "resource_name" {
value = azurerm_resource_group.resource_group.name
description = "Output name of the created Resource Group"
}
# Output variables for the Static Website module
output "name" {
value = azurerm_storage_account.storage_account.name
description = "Output name of the storage account."
}
output "primary_connection_string" {
value = azurerm_storage_account.storage_account.primary_connection_string
sensitive = true
description = "The connection string associated with the primary location."
}
output "primary_access_key" {
value = azurerm_storage_account.storage_account.primary_access_key
sensitive = true
description = "The primary access key for the storage account."
}
output "primary_web_endpoint" {
value = azurerm_storage_account.storage_account.primary_web_host
description = "The endpoint URL for web storage in the primary location."
}
output "secondary_web_endpoint" {
value = azurerm_storage_account.storage_account.secondary_web_host
description = "The endpoint URL for web storage in the secondary location."
}