https://pulumi.com logo
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
  • b

    billowy-garage-68819

    04/04/2019, 8:58 PM
    is it possible to set a config value using typescript? I.e. I'm working on a function that gets the next available cidr for a preconfigured size (like a /16) but I don't want that function to run and reconfigure a gke cluster every time we run a pulumi update and it seems like setting a config entry for the stack is the most efficient/correct way of taking care of that
    i
    • 2
    • 1
  • f

    full-night-60980

    04/04/2019, 10:29 PM
    I’ve been toying with Pulumi lately (also Terraform). Are there pulumi logos somewhere that I could include in a slide (I’m presenting at GCP NEXT conference next week)? Also, anyone from Pulumi going to be there?
    g
    • 2
    • 4
  • e

    enough-judge-17725

    04/04/2019, 10:51 PM
    Is there a way I can give more fine grained dynamodb options to a pulumi cloud table?
    w
    • 2
    • 1
  • m

    mammoth-wolf-46240

    04/04/2019, 10:59 PM
    Hey, looking at Pulumi. I currently am a Terraform user and I'm in a golang shop so my interest is piqued for sure. Is there a "provider" for vsphere at all? Looking through github but haven't seen anything yet so I'd thought I'd ask.
    g
    • 2
    • 2
  • m

    mammoth-wolf-46240

    04/05/2019, 12:10 AM
    So i've been exploring the golang sdks and I have something put together. A couple of questions came to mind. Can i run this like I would any other golang program? go run main.go? Do I have to use the pulumi cli to execute the plan? I see the pulumi.RunInfo type but it does not seem that any methods are exposed to configure or pass that type at all.
    w
    • 2
    • 2
  • c

    colossal-summer-4798

    04/05/2019, 1:10 AM
    Is there any workaround to this ? https://github.com/pulumi/pulumi-kubernetes/issues/520 In short I just want to be able to create 2 helm charts with the same release name on different clusters, but the release name is the only thing that’s used to build the resource urn. 😕
    g
    • 2
    • 2
  • q

    quaint-tailor-52411

    04/05/2019, 2:47 AM
    i just ran
    pulumi up
    on a new project and it does nothing but print the help menu — no resources are getting created
    g
    • 2
    • 5
  • q

    quaint-tailor-52411

    04/05/2019, 2:48 AM
    -.txt
    b
    • 2
    • 2
  • e

    enough-judge-17725

    04/05/2019, 3:08 PM
    With a pulumi cloud.Table, there is a convenient high level api to interact with the table (scan, query, etc..). Do we have the same thing for a aws.dynamodb.Table ?
    w
    • 2
    • 2
  • j

    jolly-lifeguard-22556

    04/05/2019, 4:19 PM
    Are there any examples that exist for using Pulumi with Elastic Beanstalk?
  • j

    jolly-lifeguard-22556

    04/05/2019, 4:20 PM
    I can see that at one point there was an examples/beanstalk in the
    @pulumi/aws
    repo but it's since been removed
    w
    • 2
    • 2
  • q

    quaint-tailor-52411

    04/05/2019, 5:56 PM
    Will
    tfgen
    convert
    .tf/.hcl
    to
    .go
    ?
    i
    s
    • 3
    • 7
  • a

    abundant-exabyte-33805

    04/05/2019, 7:21 PM
    Greetings. I am curious about the long-term plan for pulumi. Will there always be an open source (and free) component to use for building infrastructure? Trying to stay clear of great solutions that will eventually force you to pay for something. Totally understand the higher-tier subscription models though. Like ansible enterprise or chef enterprise. Thanks!
    c
    w
    • 3
    • 4
  • m

    millions-judge-24978

    04/05/2019, 9:22 PM
    Does a replacement of one resource automatically cause a replacement of anything dependent on it? I have a StatefulSet, that depends on the
    configMap.metadata.name
    of a ConfigMap. Changing the
    data
    of the ConfigMap is causing both resources to be replaced.
    w
    g
    • 3
    • 33
  • c

    colossal-room-15708

    04/06/2019, 1:13 PM
    Can I somehow get to the
    id
    property of the nested subnet resource of an Azure vnet?
    const vnet = new azure.network.VirtualNetwork("vnet", {
        resourceGroupName: resourceGroup.name,
        location: region,
        name: "vnet",
        addressSpaces: [addressSpace],
        subnets: [
            {
                addressPrefix: addressPrefix1,
                name: "management"
            }
        ]
    })
    Creating a subnet like this is allowed, but I wonder if I need to actually get to any information about this subnet in the same stack if it would be better to use the Subnet resource, instead of this nested syntax here. Or is there a way to get to that nested resource?
    w
    • 2
    • 3
  • e

    enough-judge-17725

    04/06/2019, 6:41 PM
    It would be great if there was a higher level api for running batch workloads on AWS. There seems to be a lot of boilerplate just to get one going.
    w
    • 2
    • 2
  • p

    plain-businessperson-30883

    04/06/2019, 11:09 PM
    Hello. I forgot to ask here before filling the issue. Anyone had issues configuring exchange routes the network peering in GCP? A more detailed description here: https://github.com/pulumi/pulumi-gcp/issues/133
  • w

    wide-judge-30323

    04/08/2019, 2:31 AM
    Hi. For aws resources - by default resource names have a unique suffix applied- e.g.
    my-resource-name-4d52ea3
    . Is it possible to override this to just create
    my-resource-name
    ? My specific example is for a dynamodb table where other existing processes expect an given table name. Migrating to pulumi is easier if these names don't have to change.
    g
    g
    • 3
    • 3
  • i

    icy-xylophone-82032

    04/08/2019, 1:47 PM
    Hi, are there any known problems with pulumi.com right now? The console is extremly slugglish, takes often minutes to load the stacks. The CLI doesn't work at all, just takes the command and nothing happens. Everything was working about an hour ago just fine
    c
    • 2
    • 4
  • i

    important-leather-28796

    04/08/2019, 4:20 PM
    Assuming I have the data from my secret pulumi config, what does the equivalent ts code look like for
    kubectl create secret generic mysecret --from-file auth
    ? I’m working on the traefik secret but not sure what the data
    key
    is for the pulumi secret.
    • 1
    • 2
  • m

    mammoth-wolf-46240

    04/08/2019, 5:16 PM
    Hey Pulumi, are there any resources for Cloud Foundry either available or even incomplete state?
    w
    • 2
    • 1
  • p

    prehistoric-caravan-46299

    04/08/2019, 7:15 PM
    anyone know what this error is off the top of their head
    TSError: ⨯ Unable to compile TypeScript:
        index.ts(4,20): error TS2304: Cannot find name 'awsx'.
        index.ts(8,19): error TS2304: Cannot find name 'awsx'.
        index.ts(13,24): error TS2304: Cannot find name 'awsx'.
        index.ts(22,51): error TS7006: Parameter 'e' implicitly has an 'any' type
    w
    l
    • 3
    • 27
  • h

    handsome-lizard-2724

    04/08/2019, 8:46 PM
    i'm running "pulumi up" and getting a "404 Not Found: Stack xxxx not found" for a stack that is definitely there... if i run pulumi stack select, it even lets me pick it again... anyone have ideas for me?
    l
    c
    • 3
    • 18
  • q

    quiet-wolf-18467

    04/09/2019, 8:33 AM
    Is there any word on when remote storage will be available? Seems like the Azure one has been in PR forever
  • g

    green-pager-56999

    04/09/2019, 9:47 AM
    https://github.com/pulumi/pulumi/pull/2003 - any news on dotnet support? ( @helpful-vegetable-35581 )
  • j

    jolly-lifeguard-22556

    04/09/2019, 1:50 PM
    Is there an update planned for
    <docker://pulumi/actions>
    ? I was excited to play around with Github Actions integration since I just got beta access but following the instructions my workflow fails because the version of Pulumi installed in the container is out of date:
    Status: Downloaded newer image for pulumi/actions:latest
    warning: A new version of Pulumi is available. To upgrade from version '0.16.9' to '0.17.5', visit <https://pulumi.io/install> for manual instructions and release notes.
    Logging in using access token from PULUMI_ACCESS_TOKEN
    warning: A new version of Pulumi is available. To upgrade from version '0.16.9' to '0.17.5', visit <https://pulumi.io/install> for manual instructions and release notes.
    error: [400] Bad Request: Please upgrade to v0.16.12 or later of the Pulumi CLI to manage this stack
    
    ### FAILED Pulumi Deploy (Current Stack) 13:25:11Z (1m17.509s)
  • j

    jolly-lifeguard-22556

    04/09/2019, 1:52 PM
    If it's just a matter of updating https://github.com/pulumi/actions I can provide a PR
    c
    • 2
    • 3
  • e

    early-musician-41645

    04/09/2019, 4:28 PM
    I've created a couple stacks in my personal account and now would like to move them to my org. How does that work? e.g. I created
    my-stack-A
    and
    my-stack-B
    in
    foo-pulumi-project
    I'd like to move them to
    my-org/my-stack-A
    and
    my-org/my-stack-B
    Any pointers?
    g
    c
    g
    • 4
    • 8
  • o

    orange-tailor-85423

    04/09/2019, 4:53 PM
    upvote for Google Anthos provider 🙂
    👍 1
  • c

    chilly-photographer-60932

    04/09/2019, 5:22 PM
    @white-balloon-205 I think we ran into this https://github.com/pulumi/pulumi-gcp/issues/88
    w
    • 2
    • 4
Powered by Linen
Title
c

chilly-photographer-60932

04/09/2019, 5:22 PM
@white-balloon-205 I think we ran into this https://github.com/pulumi/pulumi-gcp/issues/88
for enabling network security policy
Will be sending the logs to you directly
w

white-balloon-205

04/09/2019, 5:24 PM
Yes - see this comment for details on collecting logs (and likely causes). https://github.com/pulumi/pulumi-gcp/issues/88#issuecomment-480848030
c

chilly-photographer-60932

04/09/2019, 5:24 PM
Did that and sharing it with you
👍 1
View count: 3