Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
frasdav committed Mar 18, 2024
1 parent 4b1d374 commit f55c8ef
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
4 changes: 4 additions & 0 deletions modules/storage-account/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1 +1,5 @@
# Changelog

## 1.1

* Added `primary_access_key` and `secondary_access_key` outputs.
2 changes: 1 addition & 1 deletion modules/storage-account/VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
1.0
1.1
8 changes: 8 additions & 0 deletions modules/storage-account/src/outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,3 +5,11 @@ output "id" {
output "name" {
value = azurerm_storage_account.main.name
}

output "primary_access_key" {
value = azurerm_storage_account.main.primary_access_key
}

output "secondary_access_key" {
value = azurerm_storage_account.main.secondary_access_key
}

0 comments on commit f55c8ef

Please sign in to comment.