2026.8.31.6

Overview

Name sftpstorage
Tag 2026.8.31.6
FullName br:bicepacrdevwcom.azurecr.io/bicep/modules/sftpstorage:2026.8.31.6
Last updated 2026-08-31 10:52:42:+00:00
Created 2026-08-31 10:52:42:+00:00
Digest sha256:94920b86fe251cc4c1bea5a18e812d6ee3e64b5356cadc8366e4622a4bd5536f

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.31.6' = {
    name: 'sftpstorage${env}${version}'
    params: {
      env: env
      system: system
      tags: tags
      storageprefix: storageprefix
      users: users
    }
}