-
-
Notifications
You must be signed in to change notification settings - Fork 14.2k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #257339 from tie/pulumi-packages-yandex
pulumiPackages.pulumi-yandex-unofficial: init at 0.98.0
- Loading branch information
Showing
3 changed files
with
33 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
27 changes: 27 additions & 0 deletions
27
pkgs/tools/admin/pulumi-packages/pulumi-yandex-unofficial.nix
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
{ lib | ||
, mkPulumiPackage | ||
}: | ||
# Note that we are not using https://github.com/pulumi/pulumi-yandex because | ||
# it has been archived in 2022. | ||
mkPulumiPackage rec { | ||
owner = "Regrau"; | ||
repo = "pulumi-yandex"; | ||
version = "0.98.0"; | ||
rev = "v${version}"; | ||
hash = "sha256-Olwl4JNrJUiJaGha7ZT0Qb0+6hRKxOOy06eKMJfYf0I="; | ||
vendorHash = "sha256-8mu0msSq59f5GZNo7YIGuNTYealGyEL9kwk0jCcSO68="; | ||
cmdGen = "pulumi-tfgen-yandex"; | ||
cmdRes = "pulumi-resource-yandex"; | ||
extraLdflags = [ | ||
"-X github.com/regrau/${repo}/provider/pkg/version.Version=v${version}" | ||
]; | ||
__darwinAllowLocalNetworking = true; | ||
env.GOWORK = "off"; | ||
meta = with lib; { | ||
description = "Unofficial Yandex Cloud Resource Provider"; | ||
homepage = "https://github.com/Regrau/pulumi-yandex"; | ||
license = licenses.asl20; | ||
maintainers = with maintainers; [ tie veehaitch trundle ]; | ||
mainProgram = cmdRes; | ||
}; | ||
} |