mirror of
https://github.com/opentofu/opentofu.git
synced 2024-12-26 17:01:04 -06:00
39e609d5fd
Previously we were using the experimental HCL 2 repository, but now we'll shift over to the v2 import path within the main HCL repository as part of actually releasing HCL 2.0 as stable. This is a mechanical search/replace to the new import paths. It also switches to the v2.0.0 release of HCL, which includes some new code that Terraform didn't previously have but should not change any behavior that matters for Terraform's purposes. For the moment the experimental HCL2 repository is still an indirect dependency via terraform-config-inspect, so it remains in our go.sum and vendor directories for the moment. Because terraform-config-inspect uses a much smaller subset of the HCL2 functionality, this does still manage to prune the vendor directory a little. A subsequent release of terraform-config-inspect should allow us to completely remove that old repository in a future commit.
80 lines
2.0 KiB
Go
80 lines
2.0 KiB
Go
package command
|
|
|
|
import (
|
|
"fmt"
|
|
"strings"
|
|
|
|
"github.com/hashicorp/hcl/v2"
|
|
"github.com/hashicorp/hcl/v2/hclsyntax"
|
|
"github.com/hashicorp/terraform/addrs"
|
|
"github.com/hashicorp/terraform/tfdiags"
|
|
)
|
|
|
|
// FlagStringKV is a flag.Value implementation for parsing user variables
|
|
// from the command-line in the format of '-var key=value', where value is
|
|
// only ever a primitive.
|
|
type FlagStringKV map[string]string
|
|
|
|
func (v *FlagStringKV) String() string {
|
|
return ""
|
|
}
|
|
|
|
func (v *FlagStringKV) Set(raw string) error {
|
|
idx := strings.Index(raw, "=")
|
|
if idx == -1 {
|
|
return fmt.Errorf("No '=' value in arg: %s", raw)
|
|
}
|
|
|
|
if *v == nil {
|
|
*v = make(map[string]string)
|
|
}
|
|
|
|
key, value := raw[0:idx], raw[idx+1:]
|
|
(*v)[key] = value
|
|
return nil
|
|
}
|
|
|
|
// FlagStringSlice is a flag.Value implementation for parsing targets from the
|
|
// command line, e.g. -target=aws_instance.foo -target=aws_vpc.bar
|
|
type FlagStringSlice []string
|
|
|
|
func (v *FlagStringSlice) String() string {
|
|
return ""
|
|
}
|
|
func (v *FlagStringSlice) Set(raw string) error {
|
|
*v = append(*v, raw)
|
|
|
|
return nil
|
|
}
|
|
|
|
// FlagTargetSlice is a flag.Value implementation for parsing target addresses
|
|
// from the command line, such as -target=aws_instance.foo -target=aws_vpc.bar .
|
|
type FlagTargetSlice []addrs.Targetable
|
|
|
|
func (v *FlagTargetSlice) String() string {
|
|
return ""
|
|
}
|
|
|
|
func (v *FlagTargetSlice) Set(raw string) error {
|
|
// FIXME: This is not an ideal way to deal with this because it requires
|
|
// us to do parsing in a context where we can't nicely return errors
|
|
// to the user.
|
|
|
|
var diags tfdiags.Diagnostics
|
|
synthFilename := fmt.Sprintf("-target=%q", raw)
|
|
traversal, syntaxDiags := hclsyntax.ParseTraversalAbs([]byte(raw), synthFilename, hcl.Pos{Line: 1, Column: 1})
|
|
diags = diags.Append(syntaxDiags)
|
|
if syntaxDiags.HasErrors() {
|
|
return diags.Err()
|
|
}
|
|
|
|
target, targetDiags := addrs.ParseTarget(traversal)
|
|
diags = diags.Append(targetDiags)
|
|
if targetDiags.HasErrors() {
|
|
return diags.Err()
|
|
}
|
|
|
|
*v = append(*v, target.Subject)
|
|
return nil
|
|
}
|