Hi,
This forum is not about Terraform
, but nevertheless I hope to find some guidance regarding DNF
I am trying to install Terraform from here via following
sudo dnf install -y dnf-plugins-core
sudo dnf config-manager --add-repo https://rpm.releases.hashicorp.com/fedora/hashicorp.repo
sudo dnf -y install terraform
The problem is that Hashicorp’s repo changes URL to:
https://rpm.releases.hashicorp.com/fedora/36/x86_64/stable/repodata/repomd.xml
And according to documentation only fedora 33 is supported.
So my questions are:
- is it possible to explicitly change URL to
https://rpm.releases.hashicorp.com/fedora/33/x86_64/stable/repodata/repomd.xml
- Or to make repo “think” that I am using fedora 33 (like changing user-agent in browser)?
Thank you in advance