Antony Goetzschel
Antony Goetzschel
We have the same problem, we just built a "workaround" and created a default VPC in the region by hand or with a different Terraform code base. So when your...
Unfortunately I have the same problem, has anyone here already found a solution?
This error is caused by your SuperToken not being available to your Python application or your Python application not being able to connect. A classic bug, which happened to me,...
~~3~~ 4 years later, and still no solution 😅
i found a quick fix for this issue, installing opentofu in the container: ``` echo '@community https://dl-cdn.alpinelinux.org/alpine/edge/community' >> /etc/apk/repositories apk add opentofu@community ```
@kvendingoldo great i think the problem ist this code here: ```bash # https://github.com/tofuutils/pre-commit-opentofu/blob/main/Dockerfile#L24C1-L28C26 RUN curl -LO https://github.com/opentofu/opentofu/releases/download/v${TOFU_VERSION}/tofu_${TOFU_VERSION}_${TARGETOS}_${TARGETARCH}.zip \ && curl -LO https://github.com/opentofu/opentofu/releases/download/v${TOFU_VERSION}/tofu_${TOFU_VERSION}_SHA256SUMS \ && [ $(sha256sum "tofu_${TOFU_VERSION}_${TARGETOS}_${TARGETARCH}.zip" | cut -f...
@kvendingoldo this is the fix for the dockerfile: ``` RUN curl -LO https://github.com/opentofu/opentofu/releases/download/v${TOFU_VERSION}/tofu_${TOFU_VERSION}_${TARGETOS}_${TARGETARCH}.zip \ && curl -LO https://github.com/opentofu/opentofu/releases/download/v${TOFU_VERSION}/tofu_${TOFU_VERSION}_SHA256SUMS \ && [ $(sha256sum "tofu_${TOFU_VERSION}_${TARGETOS}_${TARGETARCH}.zip" | cut -f 1 -d ' ')...
I cant create a PR.