2026.8.25.4

Overview

Name sftpstorage
Tag 2026.8.25.4
FullName br:bicepacrdevwcom.azurecr.io/bicep/modules/sftpstorage:2026.8.25.4
Last updated 2026-08-25 10:42:17:+00:00
Created 2026-08-25 10:42:17:+00:00
Digest sha256:ef3d29b704b4f02d0d1a6ccd16ada1bffeec3e5e6348c6ded2b552477f0e6789

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