calm-quill-21760
08/17/2021, 5:30 PMCertificateSigningRequestConditionArgs
and CertificateSigningRequestStatusArgs
but have yet to find documentation as to how these tie into a CertificateSigningRequest
so I can get the Kubernetes secret signed (“Approved,Issued”). Anyone have a pointer to an example?refined-terabyte-65361
08/17/2021, 6:05 PMmysterious-lighter-33699
08/17/2021, 6:33 PMpulumi up
the URL where people can follow along, in a machine-readable form? I'd like to provide a link to that from a github workflow and it's only really accessible in logs right nowancient-night-64850
08/17/2021, 7:14 PMrough-window-15889
08/17/2021, 7:41 PMwet-fall-57893
08/18/2021, 2:22 AMspread
on const ssmPolicyDocumentStatement: pulumi.Input<pulumi.Input<aws.iam.PolicyStatement>[]>
context: need to merge 2 statements one from AWS managed policy the other is customrich-cat-16319
08/18/2021, 2:35 AM"$ref": "/aws/v4.0.0/schema.json#/resources/aws:s3%2Fbucket:Bucket"
that is in the schema.json
Does anyone know where can I find the same reference but for the azure-native:web:WebApp
?fast-florist-41572
08/18/2021, 8:45 AMancient-eve-13947
08/18/2021, 9:51 AMancient-eve-13947
08/18/2021, 11:03 AMpulumi up
or pulumi preview
?sparse-intern-71089
08/18/2021, 1:32 PMicy-jordan-58549
08/18/2021, 3:13 PMbillowy-pilot-50934
08/18/2021, 3:34 PMstocky-magazine-78486
08/18/2021, 3:37 PMmany-psychiatrist-74327
08/18/2021, 4:30 PMpulumi stack output
tells me what the outputs are now, but can I see the outputs for a previous revision/version?billowy-pilot-50934
08/18/2021, 6:42 PMbillowy-pilot-50934
08/18/2021, 6:43 PMbillowy-pilot-50934
08/18/2021, 6:43 PM[
{
"cidrBlocks": [],
"description": "Traffic from subnet",
"fromPort": 0,
"ipv6CidrBlocks": [],
"prefixListIds": [],
"protocol": "-1",
"securityGroups": [],
"self": true,
"toPort": 0
},
{
"cidrBlocks": [],
"description": "Traffic VPN",
"fromPort": 0,
"ipv6CidrBlocks": [],
"prefixListIds": [],
"protocol": "-1",
"securityGroups": [
"sg-Hidden"
],
"self": false,
"toPort": 0
},
{
"cidrBlocks": [
"0.0.0.0/0"
],
"description": "HTTPS",
"fromPort": 443,
"ipv6CidrBlocks": [],
"prefixListIds": [],
"protocol": "tcp",
"securityGroups": [],
"self": false,
"toPort": 443
}
]
billowy-pilot-50934
08/18/2021, 6:43 PMbillowy-pilot-50934
08/18/2021, 6:43 PMprivate SecurityGroup ImportSecurityGroup()
{
var tags = new InputMap<string>();
tags.Add("Name", "subnet-1_SG");
return new SecurityGroup("dev-1a_sg",
new SecurityGroupArgs
{
Name = "dev-public-1a_sg",
VpcId = "vpc-097dc5c3d016997a8",
Description = "Security group",
Tags = tags,
// I would like to get this information
// which shows in my stack online
Egress = null
//^^^^^^^
},
new CustomResourceOptions
{
ImportId = "sg-Hidden"
});
}
billowy-pilot-50934
08/18/2021, 6:44 PMcalm-quill-21760
08/18/2021, 10:56 PMpulumi
from downloading a plugin? I have a previous version installed but it insists on downloading a later one (that I suspect has a bug).rapid-iron-52715
08/18/2021, 11:07 PMrapid-iron-52715
08/18/2021, 11:08 PMechoing-jelly-67975
08/18/2021, 11:50 PMawsx.autoscaling.AutoScalingLaunchConfiguration
and spot instances.
I'm getting a Placement tenancy is not supported for spot instances.
, and placementTenancy
is defaulting to default
with no way to not set it.limited-rainbow-51650
08/19/2021, 6:49 AMAugust 18
release blog article:
https://www.pulumi.com/blog/pulumi-release-notes-m60/#dependson-now-works-for-pulumi-component-packages-and-more
In the linked section on dependsOn
, I read this:
Now, depending on a Pulumi Component Package's component will always wait on all of that component's children, regardless of language.
A ComponentResource
and a Pulumi Component Package are 2 different things. Does this change impacts the dependency management of a ComponentResource
?salmon-guitar-84472
08/19/2021, 6:54 AMerror: Duplicate resource URN 'urn:pulumi:xxxaks::ZGA.Infrastructure.NewPartner.AKS::kubernetes:<http://helm.sh/v3:Chart$kubernetes:apiextensions.k8s.io/v1:CustomResourceDefinition::monitoring/prometheus-kube-prometheus-alertmanager';|helm.sh/v3:Chart$kubernetes:apiextensions.k8s.io/v1:CustomResourceDefinition::monitoring/prometheus-kube-prometheus-alertmanager';> try giving it a unique name
rich-action-28775
08/19/2021, 8:52 AMpulumi stack --show-ids
pulumi stack --show-urns
Also searched for it in the UI in Pulumi.comelegant-pager-5412
08/19/2021, 12:51 PMacoustic-arm-10406
08/19/2021, 6:29 PMimport * as awsx from "@pulumi/awsx";
https://www.pulumi.com/docs/guides/crosswalk/aws/api-gateway/#defining-a-lambda-function-event-handler-route
When I do pulumi up
It's saying I have to use require
because of a node_module from pulumi is using require. I would like to use import instead of refactoring all my code to use require
Error:
require() of /index.js from /node_modules/@pulumi/pulumi/cmd/run/run.js is an ES module file as it is a .js file whose nearest parent package.json contains "type": "module" which defines all .js files in that package scope as ES modules.
Instead rename index.js to end in .cjs, change the requiring code to use import(), or remove "type": "module" from /package.json.
acoustic-arm-10406
08/19/2021, 6:29 PMimport * as awsx from "@pulumi/awsx";
https://www.pulumi.com/docs/guides/crosswalk/aws/api-gateway/#defining-a-lambda-function-event-handler-route
When I do pulumi up
It's saying I have to use require
because of a node_module from pulumi is using require. I would like to use import instead of refactoring all my code to use require
Error:
require() of /index.js from /node_modules/@pulumi/pulumi/cmd/run/run.js is an ES module file as it is a .js file whose nearest parent package.json contains "type": "module" which defines all .js files in that package scope as ES modules.
Instead rename index.js to end in .cjs, change the requiring code to use import(), or remove "type": "module" from /package.json.
little-cartoon-10569
08/19/2021, 10:08 PM"type":"module"
even if your runtime is node14. Don't know why. So if you want to create a pure JS package for your lambdas, you either need to use commonJS, or transpile down to that. I don't know how to transpile JS->JS; the TS->JS transpilation done with Pulumi's default config has always worked for me.acoustic-arm-10406
08/20/2021, 4:25 PM