Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions modules/azure/storage_account_public/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@ resource "azurerm_storage_account" "storage_account" {
min_tls_version = var.min_tls_version
nfsv3_enabled = var.nfsv3_enabled
is_hns_enabled = var.is_hns_enabled
sftp_enabled = var.sftp_enabled

blob_properties {
dynamic "cors_rule" {
Expand Down
5 changes: 5 additions & 0 deletions modules/azure/storage_account_public/variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -143,4 +143,9 @@ variable "loganalytics_diagnostic_setting" {
description = "Specifies the log categories that have to be sent to Log analytics."
default = null
}
variable "sftp_enabled" {
type = bool
description = "Enable or disable SFTP access for the storage account."
default = false
}