thankful-artist-81037
06/01/2021, 5:35 PMechoing-zebra-28421
06/01/2021, 5:57 PMconst notificationTable = new aws.dynamodb.Table(
"notificationTable",
{
readCapacity: 10,
writeCapacity: 10,
hashKey: "UUID",
attributes: [
{
name: "UUID",
type: "S",
},
],
}
);
const attributes = {
name: "Name custom",
item: [{ key: "key-custom", value: "value-custom" }],
};
const obj = {
UUID: { S: "04b12ed0-b431-11eb-87d6-03d0311066e5" },
CreatedAt: { S: "2021-05-13T21:20:37.275Z" },
Event: { S: "custom_events" },
NamedUser: { S: "<mailto:alex.quintero@gmail.com|alex.quintero@gmail.com>" },
Attributes: { S: JSON.stringify(attributes) },
Status: { S: "SEND" },
};
const notificationTableItem = new aws.dynamodb.TableItem(
"notificationTableItem",
{
tableName: notificationTable.name,
hashKey: notificationTable.hashKey,
item: `${JSON.stringify(obj)}`,
}
);
My result is:echoing-zebra-28421
06/01/2021, 5:57 PM{
name: "Name custom",
item: [{ key: "key-custom", value: "value-custom" }],
}
bland-florist-21412
06/01/2021, 8:18 PMdiff
method and such so that if it's been replaced it says not changes need to happen. I got that mostly working but it seems you can't use pulumi_gcp
to create the temporary service inside the custom provider (I get an error that says, "Program run without the Pulumi engine available; re-run using the pulumi
CLI" even though it was run via pulumi up
). Even if I could use pulumi_gcp
I don't see a way to destroy the resource created in the create
method when delete
is called. So I can make this work with native API calls or Google's own Python SDK but that all seems like more work than should be necessary. Is there a clean way to do this?delightful-salesclerk-16161
gorgeous-minister-41131
06/02/2021, 1:43 AM--target-dependents
doesn’t actually work in simple situations, like the one demonstrated in the issue? I’m having and been having the same behavior since I started using Pulumi 2.10 and it exists in 3.3 still today. Is this just a feature that is half-working and poorly documented?brash-airline-37413
06/02/2021, 4:15 AMquaint-translator-50744
06/02/2021, 12:18 PMelegant-pager-5412
06/02/2021, 1:53 PMfew-afternoon-8067
06/02/2021, 2:15 PMazure_native
? Struggling to convert our ARM setup and cli replacement for func azure functionapp publish --python [...]
🥲acceptable-nest-32951
06/02/2021, 4:11 PMpulumi/awsx
lib's awsx.apigateway.API
, but we also want the requestParams to be passed onto the downstream http target. Without that enhancement there should be some way to update the existing IntegrationRoute
with these additional requestParameters
Appreciate any help.microscopic-dress-1605
06/02/2021, 5:01 PMargs: Inputs
argument of the ComponentResource
constructor? From the docs it is not really clear.
new ComponentResource(type: string, name: string, args: Inputs, opts: ComponentResourceOptions, remote: boolean)
When should we pass a value toInformation passed to [initialize] method.args
args
that is not the empty object?shy-potato-48574
06/02/2021, 5:44 PMabundant-architect-1715
06/02/2021, 6:36 PMgorgeous-minister-41131
06/02/2021, 7:00 PMgorgeous-minister-41131
06/02/2021, 7:00 PMgorgeous-minister-41131
06/02/2021, 7:13 PMthankful-oxygen-71474
06/02/2021, 7:48 PMeslint
to my project and format all files I run command pulumi up
and receive multiple errors like this
aws:lambda:Function (dev-v1-internal-verify):
error: 1 error occurred:
* updating urn:pulumi:dev::aok-multi-pulumi::aws:lambda/function:Function::dev-v1-internal-verify: 1 error occurred:
* error modifying Lambda Function (dev-v1-internal-verify-cb6dab7) Code: RequestEntityTooLargeException:
status code: 413, request id: eadb73d4-c9b3-4946-8a4a-ed2743cde46b
Can anyone help ?boundless-angle-56560
06/02/2021, 8:19 PMelegant-carpet-8859
06/02/2021, 10:33 PMconfig.requireSecret('gitlabRunnerRegistrationToken')
as a string I'm having a devil of a time. Originally I was going to use Mustache to render a template, but that's out. Using pulumi.concat is gonna be really ugly if I need to concat part of the script and another part of the script around the value...anyone have an idea of how to do this?
Basically I'm taking a 26 line bash script and I need to get a Pulumi secret value into the middle of it then pass it to userData on my DO droplet Pulumi object.elegant-carpet-8859
06/02/2021, 10:34 PMelegant-carpet-8859
06/02/2021, 10:34 PMbetter-secretary-59658
06/02/2021, 11:37 PMbitter-australia-87528
06/03/2021, 7:08 AMmammoth-journalist-45153
06/03/2021, 3:51 PMpolite-continent-12996
06/03/2021, 3:52 PMsalmon-salesclerk-93543
06/03/2021, 5:36 PMpulumi login
command I got this error. error: problem logging in: failed to get the home path: getting current user: luser: unable to get current user
.
However, I have set the PATH variables like export PATH=\$PATH:\$HOME/.pulumi/bin
any lead would be helpful herebillowy-army-68599
nice-eye-54931
06/03/2021, 7:32 PMpulumi login --local
, is there a way to skip/disable this paraphrase thing? There is absolutely no point in using it as there is no way it can ever be secure setting it as an env variable?nice-eye-54931
06/03/2021, 7:35 PMvalues.yaml
in a Helm chart release? It only seems to take Dictionary<string, object>
.