hclq icon indicating copy to clipboard operation
hclq copied to clipboard

Command-line processor for HashiCorp config files, like sed for HCL — Terraform, Consul, Nomad, Vault

Results 19 hclq issues
Sort by recently updated
recently updated
newest added

I dont know if this is supported by the tool at this time, but it seems to have an issue with variables. When I execute this command `cat App.tf Variables.tf...

```sh ~ % sh install.sh sh: install.sh: No such file or directory ~ % # Download the script curl -sSLo install.sh https://install.hclq.sh # Inspect the script before executing, as is...

HCL2 lands with Terraform 0.12.

enhancement

Getting an error whrn variable type is not quoted

Currently, if `hclq` is installed on Alpine Linux, it does not work and gives following error: ``` / # ./hclq-linux-amd64 /bin/sh: ./hclq-linux-amd64: not found ```

Create simple hcl file `example.tf`: ``` data "foo" { "bar" = " - \"one\"\n - \"-two\"\n - \"three\"" } ``` Run: `cat example.tf | hclq get --raw 'data.foo.bar'` Expect: ```...

Hey, thank you for your work! Still doing some testing, but I've got a quick question: is it possible to get nested values from fake nested maps? Context: I'm kind...

It looks like the tool only lets you get/set existing values and not create new ones. ``` $ cat test.hcl foo { bar = true } $ cat test.hcl |...

Is it possible to apply terraform fmt on writed file?

enhancement