7622f30ed2
Without providers (also called plugins) pulumi doesn't do much. The way they work, if you want to use a provider, pulimi will look for it in your PATH, and if not found it will download it. Providers are just executables, but third party binaries usually don't work on nixos unless they are patched with the patchelf utility. Because of that, I'm installing some patched providers with the main pulumi binary. I'm also adding a small script helper to generate the hashes for all the binaries.
56 lines
1.3 KiB
Bash
56 lines
1.3 KiB
Bash
#!/usr/bin/env bash
|
|
|
|
VERSION="1.4.0"
|
|
|
|
declare -A plugins
|
|
plugins=(
|
|
["aws"]="1.7.0"
|
|
["gcp"]="1.4.1"
|
|
["kubernetes"]="1.2.3"
|
|
["random"]="0.2.0"
|
|
)
|
|
|
|
function genMainSrc() {
|
|
local url="https://get.pulumi.com/releases/sdk/pulumi-v${VERSION}-$1-x64.tar.gz"
|
|
local sha256
|
|
sha256=$(nix-prefetch-url "$url")
|
|
echo " {"
|
|
echo " url = \"${url}\";"
|
|
echo " sha256 = \"$sha256\";"
|
|
echo " }"
|
|
}
|
|
|
|
function genSrcs() {
|
|
for plug in "${!plugins[@]}"; do
|
|
local version=${plugins[$plug]}
|
|
# url as defined here
|
|
# https://github.com/pulumi/pulumi/blob/06d4dde8898b2a0de2c3c7ff8e45f97495b89d82/pkg/workspace/plugins.go#L197
|
|
local url="https://api.pulumi.com/releases/plugins/pulumi-resource-${plug}-v${version}-$1-amd64.tar.gz"
|
|
local sha256
|
|
sha256=$(nix-prefetch-url "$url")
|
|
echo " {"
|
|
echo " url = \"${url}\";"
|
|
echo " sha256 = \"$sha256\";"
|
|
echo " }"
|
|
done
|
|
}
|
|
|
|
cat <<EOF
|
|
# DO NOT EDIT! This file is generated automatically by update.sh
|
|
{ }:
|
|
{
|
|
version = "${VERSION}";
|
|
pulumiPkgs = {
|
|
x86_64-linux = [
|
|
EOF
|
|
genMainSrc "linux"
|
|
genSrcs "linux"
|
|
echo " ];"
|
|
|
|
echo " x86_64-darwin = ["
|
|
genMainSrc "darwin"
|
|
genSrcs "darwin"
|
|
echo " ];"
|
|
echo " };"
|
|
echo "}"
|