https://pulumi.com logo
Docs
Join the conversationJoin Slack
Channels
announcements
automation-api
aws
azure
blog-posts
built-with-pulumi
cloudengineering
cloudengineering-support
content-share
contribex
contribute
docs
dotnet
finops
general
getting-started
gitlab
golang
google-cloud
hackathon-03-19-2020
hacktoberfest
install
java
jobs
kubernetes
learn-pulumi-events
linen
localstack
multi-language-hackathon
office-hours
oracle-cloud-infrastructure
plugin-framework
pulumi-cdk
pulumi-crosscode
pulumi-deployments
pulumi-kubernetes-operator
pulumi-service
pulumiverse
python
registry
status
testingtesting123
testingtesting321
typescript
welcome
workshops
yaml
Powered by Linen
general
  • m

    millions-judge-24978

    03/21/2019, 5:09 PM
    Any chance of getting some šŸ‘€ on https://github.com/pulumi/pulumi-docker/pull/86? I hate to bump here but it seems like a less frequently trafficked repo.
    w
    • 2
    • 3
  • d

    damp-book-35965

    03/21/2019, 6:03 PM
    Trying to understand this: I'm trying to get all subnet Ids given a VPC id like this:
    const subnetIds = pulumi.output(aws.ec2.getSubnetIds({
      vpcId: vpcId,
    }));
    I thought you could get
    subnetIds.ids
    directly but doesn't seem to be working..What am I doing wrong ?
    • 1
    • 1
  • d

    damp-book-35965

    03/21/2019, 8:39 PM
    Are there any examples of using helm chart with pulumi but with quite a complex list of custom values need to be added to the chart ? @microscopic-florist-22719 @white-balloon-205 @gentle-diamond-70147
    c
    b
    w
    • 4
    • 28
  • l

    little-answer-72566

    03/21/2019, 9:20 PM
    if we choose not to use the web tool, do we still get encrypted secrets functionality?
    c
    b
    • 3
    • 4
  • l

    little-answer-72566

    03/21/2019, 10:05 PM
    is there a way to reference an AWS resource in a different region than what’s specified in the
    Pulumi.stack.yaml
    file? Specifically, my file targets
    us-west-2
    but I’d like to write to an S3 bucket in
    us-east-1
    b
    • 2
    • 3
  • w

    witty-night-47448

    03/21/2019, 10:40 PM
    Hi, i was looking for a digitalocean pulumi npm, but couldn't find one. Is anyone using pulumi with do? Thanks
    g
    • 2
    • 2
  • b

    big-potato-91793

    03/21/2019, 10:43 PM
    Hey, wanna know what is the best way to have config file by environment like
    stage
    and
    prod
    ?
    c
    b
    • 3
    • 17
  • d

    damp-book-35965

    03/21/2019, 11:26 PM
    So I split my pulumi files to make the separation more logical, it seems when I run
    pulumi preview
    it thinks I deleted all the resources ? I did change my tsconfig file to include the new file..Any other pointers ?
    c
    w
    • 3
    • 30
  • b

    better-rainbow-14549

    03/22/2019, 1:52 PM
    pulumi wants to tear down the entire cluster and update every resource when i do these version updates:
    -        "@pulumi/azure": "^0.17.2",
    -        "@pulumi/kubernetes": "^0.21.0",
    -        "@pulumi/pulumi": "^0.17.1"
    +        "@pulumi/azure": "^0.17.3",
    +        "@pulumi/kubernetes": "^0.21.1",
    +        "@pulumi/pulumi": "^0.17.2"
  • b

    better-rainbow-14549

    03/22/2019, 1:54 PM
    any ideas please? bit of a blocker šŸ˜„
    g
    a
    +3
    • 6
    • 35
  • i

    important-leather-28796

    03/22/2019, 3:03 PM
    I just updated, and started seeing new ts errors:
    The inferred type of 'clusterName' cannot be named without a reference to '@pulumi/kubernetes/node_modules/@pulumi/pulumi'. This is likely not portable. A type annotation is necessary. ts(2742)
    error originates on the last line:
    import * as pulumi from '@pulumi/pulumi'
    import * as gcp from '@pulumi/gcp'
    export const cluster = new gcp.container.Cluster(name, clusterArgs)
    
    export const clusterName = cluster.name
    w
    • 2
    • 10
  • b

    better-rainbow-14549

    03/22/2019, 3:37 PM
    x has a problem: Preview roles are not supported
    nightmare - i want to use MSI for azure storage
  • b

    better-rainbow-14549

    03/22/2019, 3:39 PM
    https://github.com/terraform-providers/terraform-provider-azurerm/issues/1538 looks like it is supported though ... strange
  • b

    better-rainbow-14549

    03/22/2019, 3:45 PM
    `roleDefinitionId: ``/subscriptions/${azure.config.subscriptionId}/providers/Microsoft.Authorization/roleDefinitions/ba92f5b4-2d11-453d-a403-e96b0029c9fe``,`
  • d

    damp-book-35965

    03/22/2019, 4:51 PM
    I'm actually launching a new node group for EKS cluster, shouldn't the node instance profile be different for each node group ? Atleast that's what the doc says here: https://docs.aws.amazon.com/eks/latest/userguide/launch-workers.html..
  • d

    damp-book-35965

    03/22/2019, 4:52 PM
    When launching through pulumi, can I configure that ? I don't see an option to do that
    w
    • 2
    • 19
  • o

    orange-tailor-85423

    03/22/2019, 7:01 PM
    Anybody run into this issue with GCP service account credentials?
    i
    w
    • 3
    • 16
  • m

    mammoth-receptionist-36297

    03/22/2019, 9:07 PM
    Hi, I am new to Pulumi. I am wondering how to
    pulumi config set
    a value as list?
  • m

    mammoth-receptionist-36297

    03/22/2019, 9:08 PM
    'key': [xxx, xxx]
  • b

    broad-football-5123

    03/22/2019, 9:11 PM
    The value can be a json object. I’m trying to find the documentation with a sample
  • m

    mammoth-receptionist-36297

    03/22/2019, 9:12 PM
    Thanks @broad-football-5123
  • b

    broad-football-5123

    03/22/2019, 9:14 PM
    pulumi config set data '{"active": true, "nums": [1,2,3]}'
  • b

    broad-football-5123

    03/22/2019, 9:15 PM
    so
    data
    is the key and then put the json in single quotes
  • b

    broad-football-5123

    03/22/2019, 9:16 PM
    For reference: https://pulumi.io/reference/programming-model.html#config
    šŸ‘ 1
  • g

    gentle-diamond-70147

    03/22/2019, 9:36 PM
    Lists and maps in config are not yet supported. https://github.com/pulumi/pulumi/issues/2306
  • m

    most-pager-38056

    03/23/2019, 7:01 AM
    Yesterday, i recreated a K8s cluster to use some new features from the latest version of
    pulumi/gcp
    . After recreating the cluster, i started to see the following error message regularly:
    kubernetes:core:ConfigMap (api-config-map):
        warning: The provider for this resource has inputs that are not known during preview.
        This preview may not correctly represent the changes that will be applied during an update.
    The error is inconsistent and when it happens, a new cluster is created and the previous one is marked to be deleted, what shouldn’t be possible because it has the flag
    protect
    . The k8s resources from the previous cluster are moved to the new cluster instantly, but they’re not created in the new cluster actually. Also, to make any updates to the stack, the previous cluster needs to be deleted. I’m not sure what is happening. Any ideas?
    c
    s
    w
    • 4
    • 9
  • l

    lemon-greece-30910

    03/23/2019, 3:33 PM
    Hi. are there any examples or guides for setting up a root domain with route 53 in Pulumi?
  • s

    straight-jordan-23612

    03/23/2019, 3:51 PM
    does anyone have a good examples of using lambda vpc with aurora instance?
  • w

    white-balloon-205

    03/24/2019, 10:07 PM
    @straight-jordan-23612 I didn't have one handy, but I was curious about it myself, so created one just now as an example here: https://gist.github.com/lukehoban/5c168258b641368dcccc7810dc454ca9. I also recorded the live coding of building this up - may be of interest to folks generally to get a feel for the inner-loop process of writing code like this (a couple wrong turns in there - which also may give a sense of some troubleshooting techniques that are useful šŸ˜’imple_smile:).

    https://youtu.be/yMhJgkKCQGMā–¾

  • s

    straight-jordan-23612

    03/24/2019, 10:09 PM
    Thanks Luke, I worked on it myself this weekend going to write up a quick blog article on it.
    šŸ˜›ulumipus-8bit: 3
Powered by Linen
Title
s

straight-jordan-23612

03/24/2019, 10:09 PM
Thanks Luke, I worked on it myself this weekend going to write up a quick blog article on it.
šŸ˜›ulumipus-8bit: 3
View count: 1