Skip to content

Commit

Permalink
add more output attributes (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelamattes authored Jul 26, 2022
1 parent 31ffd77 commit 7746d47
Showing 1 changed file with 19 additions and 17 deletions.
36 changes: 19 additions & 17 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -3,23 +3,25 @@ output "storage_account" {
value = {
for storage_account in keys(azurerm_storage_account.storage_account) :
storage_account => {
id = azurerm_storage_account.storage_account[storage_account].id
name = azurerm_storage_account.storage_account[storage_account].name
resource_group_name = azurerm_storage_account.storage_account[storage_account].resource_group_name
primary_access_key = azurerm_storage_account.storage_account[storage_account].primary_access_key
primary_blob_endpoint = azurerm_storage_account.storage_account[storage_account].primary_blob_endpoint
primary_blob_host = azurerm_storage_account.storage_account[storage_account].primary_blob_host
primary_dfs_endpoint = azurerm_storage_account.storage_account[storage_account].primary_dfs_endpoint
primary_dfs_host = azurerm_storage_account.storage_account[storage_account].primary_dfs_host
primary_file_endpoint = azurerm_storage_account.storage_account[storage_account].primary_file_endpoint
primary_file_host = azurerm_storage_account.storage_account[storage_account].primary_file_host
primary_location = azurerm_storage_account.storage_account[storage_account].primary_location
primary_queue_endpoint = azurerm_storage_account.storage_account[storage_account].primary_queue_endpoint
primary_queue_host = azurerm_storage_account.storage_account[storage_account].primary_queue_host
primary_table_endpoint = azurerm_storage_account.storage_account[storage_account].primary_table_endpoint
primary_table_host = azurerm_storage_account.storage_account[storage_account].primary_table_host
primary_web_endpoint = azurerm_storage_account.storage_account[storage_account].primary_web_endpoint
primary_web_host = azurerm_storage_account.storage_account[storage_account].primary_web_host
id = azurerm_storage_account.storage_account[storage_account].id
name = azurerm_storage_account.storage_account[storage_account].name
resource_group_name = azurerm_storage_account.storage_account[storage_account].resource_group_name
primary_access_key = azurerm_storage_account.storage_account[storage_account].primary_access_key
primary_blob_endpoint = azurerm_storage_account.storage_account[storage_account].primary_blob_endpoint
primary_blob_host = azurerm_storage_account.storage_account[storage_account].primary_blob_host
primary_dfs_endpoint = azurerm_storage_account.storage_account[storage_account].primary_dfs_endpoint
primary_dfs_host = azurerm_storage_account.storage_account[storage_account].primary_dfs_host
primary_file_endpoint = azurerm_storage_account.storage_account[storage_account].primary_file_endpoint
primary_file_host = azurerm_storage_account.storage_account[storage_account].primary_file_host
primary_location = azurerm_storage_account.storage_account[storage_account].primary_location
primary_queue_endpoint = azurerm_storage_account.storage_account[storage_account].primary_queue_endpoint
primary_queue_host = azurerm_storage_account.storage_account[storage_account].primary_queue_host
primary_table_endpoint = azurerm_storage_account.storage_account[storage_account].primary_table_endpoint
primary_table_host = azurerm_storage_account.storage_account[storage_account].primary_table_host
primary_web_endpoint = azurerm_storage_account.storage_account[storage_account].primary_web_endpoint
primary_web_host = azurerm_storage_account.storage_account[storage_account].primary_web_host
primary_connection_string = azurerm_storage_account.storage_account[storage_account].primary_connection_string
primary_blob_connection_string = azurerm_storage_account.storage_account[storage_account].primary_blob_connection_string
}
}
}
Expand Down

0 comments on commit 7746d47

Please sign in to comment.