https://pulumi.com logo
i

icy-london-58403

02/05/2020, 12:12 AM
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

broad-dog-22463

02/05/2020, 12:32 AM
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

future-barista-68134

02/05/2020, 12:48 AM
Goes into dynamic resource provider, etc.
i

icy-london-58403

02/05/2020, 3:15 AM
great. thanks!
searching
pulumi github
is super hard. All you get are all the pulumi github projects!
👍 1
m

mammoth-elephant-55302

02/05/2020, 4:12 AM
@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

icy-london-58403

02/05/2020, 6:42 PM
@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.