limited-solstice-34584
07/09/2020, 1:50 AMlimited-solstice-34584
07/09/2020, 1:50 AMlimited-solstice-34584
07/09/2020, 6:19 AMlimited-solstice-34584
07/09/2020, 6:19 AMlet secretsToStore = {
username: db.masterUsername,
password: db.masterPassword,
engine: db.engine,
port: db.port,
dbname: "macsgameboard",
dbInstanceIdentifier: db.identifier,
};
const storedPassword = new aws.secretsmanager.SecretVersion(
"macsdb_password",
{
secretId: 123,
secretString: JSON.stringify(secretsToStore),
},
{ dependsOn: db }
);
adventurous-garage-59192
07/09/2020, 6:26 AMpulumi destroy
anymore.proud-rain-51716
07/09/2020, 6:33 AMmagnificent-airport-79411
07/09/2020, 9:25 AMpulumi up -t
? I am trying to use pulumi up -t azure:apimanagement:Service
but it says, the target cannot be found.astonishing-branch-30086
07/09/2020, 9:38 AMbland-lamp-16797
07/09/2020, 10:33 AMbland-lamp-16797
07/09/2020, 10:33 AMbroad-dog-22463
07/09/2020, 12:06 PMlimited-solstice-34584
07/09/2020, 1:46 PMlimited-solstice-34584
07/09/2020, 1:46 PMlimited-solstice-34584
07/09/2020, 2:21 PMlimited-solstice-34584
07/09/2020, 2:21 PMlimited-solstice-34584
07/09/2020, 2:23 PMlimited-solstice-34584
07/09/2020, 2:23 PMlimited-solstice-34584
07/09/2020, 2:24 PMconst secret = new aws.secretsmanager.Secret("macsdb_password", {});
const storedPassword = new aws.secretsmanager.SecretVersion(
"macsdb_password",
{
secretId: secret.id,
secretString: pulumi.output(secretsToStore).apply(JSON.stringify),
},
{ dependsOn: db }
);
millions-furniture-75402
07/09/2020, 2:57 PMlimited-solstice-34584
07/09/2020, 4:18 PMclever-plumber-29709
07/09/2020, 5:08 PMcool-egg-852
07/09/2020, 6:47 PMlimited-solstice-34584
07/09/2020, 6:52 PMlimited-solstice-34584
07/09/2020, 6:52 PMchilly-hairdresser-56259
07/09/2020, 7:12 PMlimited-solstice-34584
07/09/2020, 7:16 PMbig-potato-91793
07/09/2020, 7:34 PMUpdating (nonprod-east):
pulumi:pulumi:Stack app-nonprod-east running
~ kubernetes:<http://gitlab.devxtools.tktm.io:GitlabRunner|gitlab.devxtools.tktm.io:GitlabRunner> gitlab-runner updating [diff: ~metadata,spec]
~ kubernetes:<http://gitlab.devxtools.tktm.io:GitlabRunner|gitlab.devxtools.tktm.io:GitlabRunner> gitlab-runner updating [diff: ~metadata,spec]; error: update of resource prd2576/gitlab-runner-rxy8rm1g failed because the Kubernetes API server reported that it failed to fully initialize or become live: <http://gitlabrunners.gitlab.devxtools.tktm.io|gitlabrunners.gitlab.devxtools.tktm.io> "gitlab-runner-rxy8rm1g" not found
~ kubernetes:<http://gitlab.devxtools.tktm.io:GitlabRunner|gitlab.devxtools.tktm.io:GitlabRunner> gitlab-runner **updating failed** [diff: ~metadata,spec]; error: update of resource prd2576/gitlab-runner-rxy8rm1g failed because the Kubernetes API server reported that it failed to fully initialize or become live: <http://gitlabrunners.gitlab.devxtools.tktm.io|gitlabrunners.gitlab.devxtools.tktm.io> "gitlab-runner-rxy8rm1g" not found
pulumi:pulumi:Stack app-nonprod-east running error: update failed
pulumi:pulumi:Stack app-nonprod-east **failed** 1 error
Diagnostics:
pulumi:pulumi:Stack (app-nonprod-east):
error: update failed
kubernetes:<http://gitlab.devxtools.tktm.io:GitlabRunner|gitlab.devxtools.tktm.io:GitlabRunner> (gitlab-runner):
error: update of resource prd2576/gitlab-runner-rxy8rm1g failed because the Kubernetes API server reported that it failed to fully initialize or become live: <http://gitlabrunners.gitlab.devxtools.tktm.io|gitlabrunners.gitlab.devxtools.tktm.io> "gitlab-runner-rxy8rm1g" not found
Resources:
1 unchanged
Duration: 11s
I wanted to know what was the reason of this error? Do you got any idea?limited-solstice-34584
07/09/2020, 8:08 PMcolossal-plastic-46140
07/09/2020, 8:18 PMcool-egg-852
07/09/2020, 8:43 PMEach member of the union type '{ <U>(func: (t: string) => Promise<U>): Output<U>; <U>(func: (t: string) => OutputInstance<U>): Output<U>; <U>(func: (t: string) => U): Output<...>; } | { ...; }' has signatures, but none of those signatures are compatible with each other.
When trying to do:
new gcp.pubsub.SubscriptionIAMMember(`${config.projectName}-${topicName}`, {
member: serviceAccount.account.email.apply((e) => `serviceAccount:${e}`),
role: 'roles/pubsub.subscriber',
subscription: subscription.name,
});
cool-egg-852
07/09/2020, 8:43 PMEach member of the union type '{ <U>(func: (t: string) => Promise<U>): Output<U>; <U>(func: (t: string) => OutputInstance<U>): Output<U>; <U>(func: (t: string) => U): Output<...>; } | { ...; }' has signatures, but none of those signatures are compatible with each other.
When trying to do:
new gcp.pubsub.SubscriptionIAMMember(`${config.projectName}-${topicName}`, {
member: serviceAccount.account.email.apply((e) => `serviceAccount:${e}`),
role: 'roles/pubsub.subscriber',
subscription: subscription.name,
});
.apply
we are getting this