dabo

Results 16 comments of dabo

Found a solution for the issue: ``` curl -XDELETE -k --cert ./kirk.pem --key ./kirk-key.pem 'https://localhost:9200/.opendistro-reports-definitions'' ``` If you use the certificate to authenticate, you will be able to delete the...

Full logs: ``` Run diggerhq/tfrun@main Run cd /runner/_work/_actions/diggerhq/tfrun/main go: downloading github.com/aws/aws-sdk-go v1.44.219 go: downloading cloud.google.com/go/storage v1.30.1 go: downloading github.com/google/go-github/v50 v50.1.0 go: downloading gopkg.in/yaml.v2 v2.4.0 go: downloading github.com/hashicorp/terraform-exec v0.18.1 go: downloading...

> did you add your cloud provider keys as secrets in the action? Yes using cloud creds of a supported provider and I share them as env vars.

It has full access to the db, my guess it is trying to lock something that does not exist.

I can't join your slack, it's limited to certain email addresses. What I did find was the following in Dynamodb: ``` "////00_myvm/terraform-bm.tfstate-md5" ``` Could it be that it can't detect...

Maybe it could be related to me using this Terragrunt fucntion for the key path: ``` ${path_relative_to_include()} ``` Docs: https://terragrunt.gruntwork.io/docs/reference/built-in-functions/#path_relative_to_include

Okay, it worked the second time, I can see it being locked now. However it is complaining that it can't find Terraform. Should I install this myself on the runner?...

@ZIJ I have the following: ``` - uses: actions/setup-go@v4 with: go-version: '>=1.20.3' - name: Setup Terragrunt uses: autero1/[email protected] with: terragrunt_version: 0.45.0 token: ``` So yes, it should be installed I...

Okay, i added the following steps and now it works: ``` - name: Create directory for digger run: | mkdir -p /usr/local/bin/ sudo chown runner: /usr/local/bin/ sudo apt-get update &&...

Now I run into my next problem, I'm trying to download a module from a different private repo. What would be the best approach to give access to the action?...