Question: Anyone know if there is a way to configu...
# general
i
Question: Anyone know if there is a way to configure github using Pulumi? There is a terraform provider for GitHub but I can't find the same in the Pulumi Docs.
b
There is no official provider right now but I read in another channel that someone is creating one
You can look at https://github.com/pulumi/pulumi-tf-provider-boilerplate as a way if creating one
f
Goes into dynamic resource provider, etc.
i
great. thanks!
searching
pulumi github
is super hard. All you get are all the pulumi github projects!
👍 1
m
@icy-london-58403
Copy code
You can still use it like this:

import * as gh from '@ibrasho/pulumi-github/bin';
but you will need to get the provider plugin binary. the author here does not appear to have published that anywhere - so you will need to clone the repo and build it yourself (with Go). Then put the resulting pulumi-provider-github binary on your PATH and things should work.
i
@mammoth-elephant-55302 great thanks! I'd prefer to build it myself so I can review it anyway. So that works perfect. I'll give this a try too.