You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
terraform/internal/command/arguments/modules.go

56 lines
1.4 KiB

// Copyright IBM Corp. 2014, 2026
// SPDX-License-Identifier: BUSL-1.1
package arguments
import "github.com/hashicorp/terraform/internal/tfdiags"
// Modules represents the command-line arguments for the modules command
type Modules struct {
// ViewType specifies which output format to use: human, JSON, or "raw"
ViewType ViewType
// Vars are the variable-related flags (-var, -var-file).
Vars *Vars
}
// ParseModules processes CLI arguments, returning a Modules value and error
// diagnostics. If there are any diagnostics present, a Modules value is still
// returned representing the best effort interpretation of the arguments.
func ParseModules(args []string) (*Modules, tfdiags.Diagnostics) {
var diags tfdiags.Diagnostics
var jsonOutput bool
modules := &Modules{
Vars: &Vars{},
}
cmdFlags := extendedFlagSet("modules", nil, nil, modules.Vars)
cmdFlags.BoolVar(&jsonOutput, "json", false, "json")
if err := cmdFlags.Parse(args); err != nil {
diags = diags.Append(tfdiags.Sourceless(
tfdiags.Error,
"Failed to parse command-line flags",
err.Error(),
))
}
args = cmdFlags.Args()
if len(args) > 0 {
diags = diags.Append(tfdiags.Sourceless(
tfdiags.Error,
"Too many command line arguments",
"Expected no positional arguments",
))
}
switch {
case jsonOutput:
modules.ViewType = ViewJSON
default:
modules.ViewType = ViewHuman
}
return modules, diags
}