diff --git a/modules/storage-account/CHANGELOG.md b/modules/storage-account/CHANGELOG.md index 825c32f..e2c0ac6 100644 --- a/modules/storage-account/CHANGELOG.md +++ b/modules/storage-account/CHANGELOG.md @@ -1 +1,5 @@ # Changelog + +## 1.1 + +* Added `primary_access_key` and `secondary_access_key` outputs. diff --git a/modules/storage-account/VERSION b/modules/storage-account/VERSION index d3827e7..9459d4b 100644 --- a/modules/storage-account/VERSION +++ b/modules/storage-account/VERSION @@ -1 +1 @@ -1.0 +1.1 diff --git a/modules/storage-account/src/outputs.tf b/modules/storage-account/src/outputs.tf index c0ffa15..7f2826b 100644 --- a/modules/storage-account/src/outputs.tf +++ b/modules/storage-account/src/outputs.tf @@ -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 +}