File tree 3 files changed +14
-11
lines changed
3 files changed +14
-11
lines changed Original file line number Diff line number Diff line change 1
1
terraform {
2
2
required_providers {
3
3
aws = {
4
- source = " registry.terraform.io /hashicorp/aws"
4
+ source = " registry.opentofu.org /hashicorp/aws"
5
5
}
6
6
}
7
7
}
Original file line number Diff line number Diff line change 19
19
packages = [
20
20
pkgs . awscli2
21
21
# TODO: migrate registry for opentofu as well.
22
- ( pkgs . opentofu . withPlugins ( p : [
23
- p . aws
24
- p . fastly
25
- p . netlify
26
- p . secret
27
- ] ) )
22
+ ( pkgs . opentofu . withPlugins (
23
+ p :
24
+ builtins . map convert2Tofu [
25
+ p . aws
26
+ p . fastly
27
+ p . netlify
28
+ p . secret
29
+ ]
30
+ ) )
28
31
] ;
29
32
} ;
30
33
Original file line number Diff line number Diff line change @@ -9,16 +9,16 @@ terraform {
9
9
10
10
required_providers {
11
11
aws = {
12
- source = " registry.terraform.io /hashicorp/aws"
12
+ source = " registry.opentofu.org /hashicorp/aws"
13
13
}
14
14
fastly = {
15
- source = " registry.terraform.io /fastly/fastly"
15
+ source = " registry.opentofu.org /fastly/fastly"
16
16
}
17
17
netlify = {
18
- source = " registry.terraform.io /AegirHealth/netlify"
18
+ source = " registry.opentofu.org /AegirHealth/netlify"
19
19
}
20
20
secret = {
21
- source = " registry.terraform.io /numtide/secret"
21
+ source = " registry.opentofu.org /numtide/secret"
22
22
}
23
23
}
24
24
}
You can’t perform that action at this time.
0 commit comments