Overview
|
|
| Name |
sftpstorage |
| Tag |
2026.8.25.2 |
| FullName |
br:bicepacrdevwcom.azurecr.io/bicep/modules/sftpstorage:2026.8.25.2 |
| Last updated |
2026-08-25 09:47:57:+00:00 |
| Created |
2026-08-25 09:47:57:+00:00 |
| Digest |
sha256:3d2db3d85c94e59638cc62fcadf4a49244bd0b9b2169d2e3701c952be7a619f9 |
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.2' = {
name: 'sftpstorage${env}${version}'
params: {
env: env
system: system
tags: tags
storageprefix: storageprefix
users: users
}
}