Code & Deploy
Code
Code Review
Models
Repos
Toggle menu
Code
Code Review
Models
Repos
Sign in
Sign in
@cryptotaxi247
/
infra-1
infra-1
/
terraform
/
flake-module.nix
Code
Commits
Issues
Pulls
Sessions
CI/CD
main
main
nix
19 lines
381 Bytes
Copy permalink
Copy
Raw
1
{
2
perSystem
=
3
{
pkgs
,
...
}:
4
{
5
devShells
.
terraform
=
pkgs
.
mkShellNoCC
{
6
packages
=
[
7
pkgs
.
awscli2
8
(
pkgs
.
opentofu
.
withPlugins
(
9
plugin
:
with
plugin
;
[
10
hashicorp_aws
11
fastly_fastly
12
aegirhealth_netlify
13
numtide_secret
14
]
15
))
16
];
17
};
18
};
19
}