mirror of
https://github.com/terraform-docs/terraform-docs.git
synced 2026-03-27 12:58:35 +07:00
52 lines
1.4 KiB
Go
52 lines
1.4 KiB
Go
package cmd
|
|
|
|
import (
|
|
"github.com/segmentio/terraform-docs/internal/pkg/print/markdown/document"
|
|
"github.com/segmentio/terraform-docs/internal/pkg/print/markdown/table"
|
|
"github.com/segmentio/terraform-docs/internal/pkg/tfconf"
|
|
"github.com/spf13/cobra"
|
|
)
|
|
|
|
var markdownCmd = &cobra.Command{
|
|
Args: cobra.ExactArgs(1),
|
|
Use: "markdown [PATH]",
|
|
Aliases: []string{"md"},
|
|
Short: "Generate Markdown of inputs and outputs",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
doPrint(args[0], func(module *tfconf.Module) (string, error) {
|
|
return table.Print(module, settings)
|
|
})
|
|
},
|
|
}
|
|
|
|
var mdTableCmd = &cobra.Command{
|
|
Args: cobra.ExactArgs(1),
|
|
Use: "table [PATH]",
|
|
Aliases: []string{"tbl"},
|
|
Short: "Generate Markdown tables of inputs and outputs",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
doPrint(args[0], func(module *tfconf.Module) (string, error) {
|
|
return table.Print(module, settings)
|
|
})
|
|
},
|
|
}
|
|
|
|
var mdDocumentCmd = &cobra.Command{
|
|
Args: cobra.ExactArgs(1),
|
|
Use: "document [PATH]",
|
|
Aliases: []string{"doc"},
|
|
Short: "Generate Markdown document of inputs and outputs",
|
|
Run: func(cmd *cobra.Command, args []string) {
|
|
doPrint(args[0], func(module *tfconf.Module) (string, error) {
|
|
return document.Print(module, settings)
|
|
})
|
|
},
|
|
}
|
|
|
|
func init() {
|
|
markdownCmd.AddCommand(mdTableCmd)
|
|
markdownCmd.AddCommand(mdDocumentCmd)
|
|
|
|
rootCmd.AddCommand(markdownCmd)
|
|
}
|