proud-cricket-86351
04/29/2022, 5:57 PMbrave-lizard-56518
04/29/2022, 10:50 PMmagnificent-lifeguard-15082
04/30/2022, 2:20 PMbrave-lizard-56518
05/01/2022, 2:03 PMproud-cricket-86351
05/02/2022, 6:47 AMname: modules
runtime: nodejs
description: A minimal AWS TypeScript Pulumi program
vs
pulumi.dev.yaml
config:
aws:region: eu-west-1
wet-noon-14291
05/02/2022, 11:20 AM"One or more errors occurred"Even though everything has succeeded. If I restart the application it works just fine and the message disappear, which I find pretty strange.
broad-helmet-79436
05/02/2022, 12:50 PMclever-glass-42863
05/02/2022, 5:52 PMhost
Docker network using the Docker Pulumi api? The current api requires the id of the resource, which we don't know at this point. However, in a Docker Desktop configurations you have the local host network by default.rapid-raincoat-36492
05/02/2022, 6:01 PMPulumi.yaml
in it that controls all of the settings, and Stack specific config is determined by pulumi.getStack()
in the code.
If I wanted to make it so that in all cases, the state file would be written in S3 like: <s3://some-bucket/${name-of-project}/${stack-name}>
, what is the easiest way to enforce that? Do I need a Pulumi.<stack>.yaml
for each stack in each project? Or is there a centralized way I could do this in the code somehow, or in the single Pulumi.yaml
file for each project?
And would I run into any issues if multiple different projects use the same stack names, such as dev
, staging
, and prod
?full-artist-27215
05/02/2022, 6:24 PMpulumi.export
from within an Output.apply
lambda function? I'd like to conditionally export something if an Output has a particular value, but it doesn't appear to be working 😕alert-monkey-12753
05/02/2022, 7:23 PMtsc
version that comes with pulumi is Version 3.7.5
and I want to upgrade the typescript version to 4.5.5
billowy-army-68599
05/02/2022, 9:41 PMdamp-honey-93158
05/03/2022, 12:12 PMdamp-honey-93158
05/03/2022, 12:13 PMable-thailand-87943
05/03/2022, 12:35 PMbulky-agent-73210
05/03/2022, 12:51 PMpulumi import
a resource from custom provider?busy-crayon-89086
05/03/2022, 1:23 PMhigh-judge-8768
05/03/2022, 2:42 PMhigh-judge-8768
05/03/2022, 2:42 PMhigh-judge-8768
05/03/2022, 2:42 PMhigh-judge-8768
05/03/2022, 2:43 PMhigh-judge-8768
05/03/2022, 2:44 PMstraight-crayon-4578
05/03/2022, 3:13 PMPulumi.yaml
belong?
• Every project directory (github, datadog...) requires a pulumi new
? Otherwise, where I'm supposed to run the new
and up
commands?quick-airport-30353
05/03/2022, 3:19 PMpolite-napkin-90098
05/03/2022, 4:35 PMaws eks describe-cluster
command and then use that to create an oidc Provider in AWS with the right url.
So given https://www.pulumi.com/registry/packages/aws/api-docs/iam/openidconnectprovider/ I assumed I would be able to get the oidc.issuer url from the stack object created by the eks.cluster call and pass that to the new aws.iam.OpenIdConnectProvider() and do what the aws docs suggest from Pulumi.
However
cluster.core.oidcProvider.url and cluster.core.oidcProvider.arn stay empty even when the cluster has been created.
Perhaps I need to add https://www.pulumi.com/registry/packages/aws/api-docs/eks/identityproviderconfig/ but that also requires the url which the aws eks describe-cluster
provides, and then I'm back to square one trying to work out how to replicate that in pulumi.chilly-magazine-6129
05/03/2022, 4:54 PMlemon-photographer-61155
05/03/2022, 4:54 PMsome-dream-10395
05/03/2022, 7:18 PMpulumi import
on the resource so that my current state stops trying to re-apply the CRD but I noticed that there's 0 documentation or examples on how to import a CRD:
https://www.pulumi.com/registry/packages/kubernetes/api-docs/apiextensions/customresource/
Are there any examples anywhere for what the format is for doing an import for a CRD that's part of a helm chart? How do I ID it? What's the format for specifying things like the kind
, apiVersion
, namespace
, etc?straight-crayon-4578
05/03/2022, 8:00 PM__main__.py
for one project? eg.: pulumi up file.py
?full-dress-10026
05/03/2022, 9:01 PMaws.ssm.getParameter
. The response is wrapped like so pulumi.output(resp).apply(r => r.value)
. I am seeing a weird behavior. I have changed the value of my SSM parameter, and pulumi is still returning the old value. Even weirder is that the old value is only returned on the CI and not when I run on my local machine. Any pointers on what is going on?full-dress-10026
05/03/2022, 9:01 PMaws.ssm.getParameter
. The response is wrapped like so pulumi.output(resp).apply(r => r.value)
. I am seeing a weird behavior. I have changed the value of my SSM parameter, and pulumi is still returning the old value. Even weirder is that the old value is only returned on the CI and not when I run on my local machine. Any pointers on what is going on?quick-airport-30353
05/03/2022, 9:39 PMfull-dress-10026
05/03/2022, 9:45 PM