Skip to content

Commit 81a6a31

Browse files
committed
Explicitly set registry to "registry.terraform.io" for some providers
* downloads from OpenTofu registry can be unsigned which leads to errors * this workaround does however not work reliably?
1 parent 4b8a57a commit 81a6a31

File tree

5 files changed

+8
-6
lines changed

5 files changed

+8
-6
lines changed

terraform-modules/actions_runner_controller/infra/providers.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ terraform {
77
source = "hashicorp/kubernetes"
88
}
99
kubectl = {
10-
source = "gavinbunney/kubectl"
10+
source = "registry.terraform.io/gavinbunney/kubectl"
1111
}
1212
github = {
1313
source = "integrations/github"

terraform-modules/actions_runner_controller/team/providers.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ terraform {
77
source = "hashicorp/kubernetes"
88
}
99
kubectl = {
10-
source = "gavinbunney/kubectl"
10+
source = "registry.terraform.io/gavinbunney/kubectl"
1111
}
1212
github = {
1313
source = "integrations/github"

terraform-modules/concourse/app/providers.tf

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ terraform {
44
source = "hashicorp/google"
55
}
66
carvel = {
7-
source = "vmware-tanzu/carvel"
7+
source = "registry.terraform.io/vmware-tanzu/carvel"
8+
version = "= 0.11.0"
89
}
910
}
1011
}

terraform-modules/concourse/backend/providers.tf

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,10 +4,11 @@ terraform {
44
source = "hashicorp/google"
55
}
66
carvel = {
7-
source = "vmware-tanzu/carvel"
7+
source = "registry.terraform.io/vmware-tanzu/carvel"
8+
version = "= 0.11.0"
89
}
910
kubectl = {
10-
source = "gavinbunney/kubectl"
11+
source = "registry.terraform.io/gavinbunney/kubectl"
1112
}
1213
}
1314
}

terraform-modules/concourse/infra/providers.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
terraform {
22
required_providers {
33
kubectl = {
4-
source = "gavinbunney/kubectl"
4+
source = "registry.terraform.io/gavinbunney/kubectl"
55
}
66
kubernetes = {
77
source = "hashicorp/kubernetes"

0 commit comments

Comments
 (0)