https://pulumi.com logo
Title
w

wet-noon-14291

03/19/2021, 8:39 AM
@broad-dog-22463, you seem to be the most active one on the pulumi-provider. Have you experienced anything like this before: https://github.com/pulumi/pulumi-github/issues/111
b

brave-planet-10645

03/19/2021, 10:38 AM
That's weird. It says it's been replaced in the stack but it's gone in github
w

wet-noon-14291

03/19/2021, 11:31 AM
Have you reproduced it @brave-planet-10645 ?
I didn’t try it on a smaller example, but I think it should be reproducible.
b

brave-planet-10645

03/19/2021, 11:32 AM
Yes
import * as pulumi from "@pulumi/pulumi";
import * as github from "@pulumi/github";
import * as random from "@pulumi/random";

const org = github.getOrganization({
    name: "karsenbarg"
});

const secret = new random.RandomString("secret", {
    length:  15
});

const orgSecret = new github.ActionsOrganizationSecret("orgSecret", {
    plaintextValue: secret.result,
    secretName: "mysecret",
    visibility: "all"
});
and then changed the length of the secret
👍 1
w

wet-noon-14291

03/19/2021, 12:40 PM
Do you need anything more input from me @brave-planet-10645, or will you update the ticket?
b

brave-planet-10645

03/19/2021, 12:40 PM
I'll update the ticket shortly
👍 1