Skip to content

bicep-docs is a command-line tool that generates documentation for Bicep templates.

License

Notifications You must be signed in to change notification settings

christosgalano/bicep-docs

Repository files navigation

bicep-docs

ci Code Coverage Go Report Card Go Reference Github Downloads

Table of contents

Description

bicep-docs is a command-line tool that generates documentation for Bicep templates.

Installation

Homebrew

brew tap christosgalano/christosgalano
brew install bicep-docs

Go

go install github.com/christosgalano/bicep-docs/cmd/bicep-docs@latest

Binary

Download the latest binary from the releases page.

Requirements

To run bicep-docs, either the Azure CLI or the Bicep CLI must be installed.

CLI Minimum Required Version
Azure 2.64.0
Bicep 0.29.0

Usage

bicep-docs is a command-line tool that generates documentation for Bicep templates.

Given an input Bicep file or directory, it parses the file(s) and generates corresponding documentation in Markdown format.

This can be used to automatically create and update documentation for your Bicep templates.

If the input is a directory, then for each main.bicep it will generate a README.md in the same directory. This happens recursively for all subdirectories.

If the input is a Bicep file, the output must be a file; otherwise, an error will be returned.

The default value for the output is README.md, relative to the directory where the command is executed.

CAUTION: If the Markdown file already exists, it will be overwritten.

Arguments

Regarding the arguments --include-sections and --exclude-sections, the available sections are: description, usage, modules, resources, parameters, udfs, uddts, variables, outputs.

The default sections ordered are description,usage,modules,resources,parameters,udfs,uddts,variables,outputs. The default input for--exclude-sections is ''. This ensures backward compatibility with the previous version.

The order of the sections is respected when including them.

When excluding sections, the result will be the default sections minus the excluded ones (e.g. --exclude-sections description,usage will include modules,resources,parameters,udfs,uddts,variables,outputs in that order).

Both arguments cannot be provided at the same time, unless the --include-sections argument is the same as the default sections (e.g. --include-sections description,usage,modules,resources,parameters,udfs,uddts,variables,outputs).

Example usage

Parse a Bicep file and generate a Markdown file:

bicep-docs --input main.bicep --output readme.md

Parse a Bicep file and generate a README.md file in the same directory:

bicep-docs -i main.bicep

Parse a directory and generate a README.md file for each main.bicep file with verbose output:

bicep-docs -i ./bicep -V

Parse a Bicep file and generate a README.md excluding the user-defined sections:

bicep-docs --input main.bicep --exclude-sections udfs,uddts

Parse a Bicep file and generate a README.md including only the resources and modules in that order:

bicep-docs ---input main.bicep --include-sections resources,modules

More examples can be found here.

Documentation format

The documentation has the following format:

# module name | file name

## Description

...

## Usage

...

## Modules

table of modules

## Resources

table of resources

## Parameters

table of parameters

## User Defined Data Types (UDDTs)

table of UDDTs

## User Defined Functions (UDFs)

table of UDFS

## Variables

table of variables

## Outputs

table of outputs

Handling of Loops

The tool follows these conventions when documenting resources, modules, variables, and outputs that use copy/loop constructs:

Resources and Modules:

  • For resource/module arrays (using copy loops), only the base resource/module is documented with its symbolic name
  • The documentation shows the type and description once, rather than documenting each iteration
  • Example:
    resource storageAccount 'Microsoft.Storage/storageAccounts@2023-01-01' = [for i in range(0, 5): {...}]
    module appService 'br/modules:app:v1' = [for env in environments: {...}]
    Each is documented as a single entry in their respective tables

Variables and Outputs:

  • For array comprehension variables/outputs (using copy), the item is documented once with its description
  • Both the array item and its transformed version are included in the documentation
  • Example:
    var storageConfigs = [for i in range(0, length(locations)): {...}]
    var ipFormatWithDuplicates = [for this in storageConfigs: {...}]
    
    output resourceIds array = [for i in range(0, length(locations)): storageAccount[i].id]
    output names array = [for config in storageConfigs: config.name]
    Each appears as a single entry in their respective tables

This approach keeps the documentation clean and focused on the logical structure rather than implementation details.

Folder structure

This tool is extremely useful if you are following this structure for your Bicep projects:

.
├── bicep
│   │
│   ├── modules
│   │   ├── compute
│   │   │   ├── main.bicep
│   │   │   └── README.md
│   │   └── ...
│   │
│   ├── environments
│   │   ├── development
│   │   │   ├── main.bicep
│   │   │   ├── main.bicepparam
│   │   │   └── README.md
│   │   └── ...

Contributing

Information about contributing to this project can be found here.

License

This project is licensed under the MIT License.

About

bicep-docs is a command-line tool that generates documentation for Bicep templates.

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Contributors 4

  •  
  •  
  •  
  •  

Languages