nixpkgs/pkgs/tools/admin/pulumi/update.sh

81 lines
1.9 KiB
Bash
Raw Normal View History

#!/usr/bin/env bash
2020-09-24 14:02:12 +00:00
# Bash 3 compatible for Darwin
2020-09-24 14:02:12 +00:00
# Version of Pulumi from
# https://www.pulumi.com/docs/get-started/install/versions/
2021-07-06 14:57:34 +00:00
VERSION="3.6.0"
2020-09-24 14:02:12 +00:00
# Grab latest release ${VERSION} from
# https://github.com/pulumi/pulumi-${NAME}/releases
plugins=(
2021-06-01 17:48:12 +00:00
"auth0=2.2.0"
2021-07-06 14:57:34 +00:00
"aws=4.10.0"
2021-06-21 19:59:55 +00:00
"cloudflare=3.2.0"
2021-06-01 17:48:12 +00:00
"consul=3.2.0"
"datadog=3.3.0"
2021-06-21 19:59:55 +00:00
"digitalocean=4.4.1"
2021-04-21 17:27:50 +00:00
"docker=3.0.0"
2021-05-24 02:01:22 +00:00
"equinix-metal=2.0.0"
2021-07-06 14:57:34 +00:00
"gcp=5.11.0"
2021-06-21 19:59:55 +00:00
"github=4.2.0"
2021-06-01 17:48:12 +00:00
"gitlab=4.1.0"
2021-07-06 14:57:34 +00:00
"hcloud=1.1.0"
"kubernetes=3.5.0"
"linode=3.2.0"
2021-05-24 02:01:22 +00:00
"mailgun=3.1.0"
2021-04-21 17:27:50 +00:00
"mysql=3.0.0"
2021-05-24 02:01:22 +00:00
"openstack=3.2.0"
2020-12-04 19:45:53 +00:00
"packet=3.2.2"
2021-06-01 17:48:12 +00:00
"postgresql=3.1.0"
"random=4.2.0"
2021-05-24 02:01:22 +00:00
"vault=4.1.0"
2021-06-21 19:59:55 +00:00
"vsphere=4.0.0"
2021-01-18 14:51:36 +00:00
)
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() {
2020-07-13 22:16:00 +00:00
for plugVers in "${plugins[@]}"; do
local plug=${plugVers%=*}
local version=${plugVers#*=}
# 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
}
2021-02-27 12:27:31 +00:00
{
cat <<EOF
# DO NOT EDIT! This file is generated automatically by update.sh
{ }:
{
version = "${VERSION}";
pulumiPkgs = {
x86_64-linux = [
EOF
2021-02-27 12:27:31 +00:00
genMainSrc "linux"
genSrcs "linux"
echo " ];"
echo " x86_64-darwin = ["
2021-02-27 12:27:31 +00:00
genMainSrc "darwin"
genSrcs "darwin"
echo " ];"
echo " };"
echo "}"
} > data.nix