2026.8.26.3

Overview

Name sftpstorage
Tag 2026.8.26.3
FullName br:bicepacrdevwcom.azurecr.io/bicep/modules/sftpstorage:2026.8.26.3
Last updated 2026-08-26 07:47:24:+00:00
Created 2026-08-26 07:47:24:+00:00
Digest sha256:bd7a51ff4a2243dee6cf3ab60297bd28b4ae51018c5e936bf013e1a30ac9aa75

Parameters

Name Type Required Description
env string Yes The environment to be created.
system string Yes System/project name
tags object Yes Tags to add to the resources
location string No
resourceGroup().location
Location for all resources.
storageprefix string Yes Storage prefix to be used in the beginning of storage account name
permissions string No
'rcwdl'
Usernames permission
users array Yes Username
publicKey string No
''
SSH Public Key for primary user. If not specified, Azure will generate a password which can be accessed securely

Outputs

Name Type Description
storageAccountName string

Example

@description('The target environment.')
param env string

@description('The deployment version.')
param version string = '1.0.0.0'

@description('System/project name')
param system string

@description('Tags to add to the resources')
param tags object

@description('Storage prefix to be used in the beginning of storage account name')
param storageprefix string

@description('Username')
param users array


module sftpstorage 'br:bicepacrdevwcom.azurecr.io/bicep/modules/sftpstorage:2026.8.26.3' = {
    name: 'sftpstorage${env}${version}'
    params: {
      env: env
      system: system
      tags: tags
      storageprefix: storageprefix
      users: users
    }
}