Kim Oliver Drechsel
Kim Oliver Drechsel
The only solution I found was documented years ago in the old Repo: https://github.com/src-d/go-git/issues/1143#issuecomment-529676362 You can't run fetch on shallow clones. It only works, when you clone without specifying `Depth:`...
Hi, this provider is no longer maintained. You can open an issue or pull request for our new provider instead: https://github.com/germanbrew/terraform-provider-hetznerdns Alternatively you could specify your api token in a...
Timo is the only one who maintains this repo, but unfortunately he no longer works on it and also doesn't respond to messages. That's the reason why we forked this...
You also can't use the provenance and sbom feature since using the example in their documentation makes you lose these information right away: https://docs.docker.com/build/ci/github-actions/attestations/ > [!NOTE] > Note that adding...
I mean I can see that the attestation manifest is generated and it seems like it also gets pushed but I have no idea where it ends up or how...
Hi, we created a new fork of this project as this one is no longer maintained and added a bunch of additional features including data sources. You can find it...
You should use jsonencode for things like dkim records: ```yaml value = jsonencode("v=DKIM1;h=sha256;k=rsa;s=email;p=MIIBIjAN...") ```
The splitting is normal for long records like dkim, as the length of a single string in TXT records is [limited to 255 bytes](https://github.com/timohirt/terraform-provider-hetznerdns/issues/13#issuecomment-687865996). It's normal though and the only...
A nice workaround to split recods automatically is described in a similiar issue related to route53 on aws: https://github.com/hashicorp/terraform-provider-aws/issues/14941#issuecomment-744591440
I thought of the [other workaround under my linked comment](https://github.com/hashicorp/terraform-provider-aws/issues/14941#issuecomment-934382701), which splits the string when needed (after every 255th char). However I have not tried it.