4.0.0.0

Overview

A detailed description of the bicep module. Used for the overview in documentation.

Name bri
Tag 4.0.0.0
FullName br:britool.azurecr.io/bicep/modules/bri:4.0.0.0
Last updated 2023-02-24 00:19:21:+00:00
Created 2023-02-24 00:19:21:+00:00
Digest sha256:1af1d11d57ca5984d6a570c8a565432d48a550043c446b88939b4b1d6f6fc918

Parameters

Name Type Required Description
name ▲ secure ▲
string
Length: ≧1 ≦20
Yes Name of animal
parent string
'Adam',
'Eve'
No
'Eve'
fruit array No
[
'Banana'
'Apple'
]
Possible fruits.
alive bool No
true
Indicates if animal is alive
age int
1,
3,
25,
50,
99

Value: ≧1 ≦99
No
3
Age of animal
animal object No
{
name: name
age: age
species: 'Ape'
eats: 'Banana'
alive: alive
}
topSecret ▲ secure ▲
object
Yes Very secret object

Outputs

Name Type Description
uniqueName string Unique name of animal
animal object
eatsFruit bool Flag if animal eats fruit.
parent string
base64Encoded string

Example

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

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

@description('Name of animal')
@secure()
@minLength(1)
@maxLength(20)
param name string

@description('Very secret object')
@secure()
param topSecret object


module bri 'br:britool.azurecr.io/bicep/modules/bri:4.0.0.0' = {
    name: 'bri${env}${version}'
    params: {
      name: name
      topSecret: topSecret
    }
}