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
  • l

    limited-rainbow-51650

    01/22/2020, 8:56 AM
    The section on
    Structured Configuration
    shows how to set a secret as part of structured config. But I’m missing what the type should be in my custom TS interface. https://www.pulumi.com/docs/intro/concepts/config/#structured-configuration
    m
    • 2
    • 1
  • r

    red-football-97286

    01/22/2020, 11:51 AM
    General question, has anyone implemented pulumi with Spinnaker? If so any thoughts? My company are keen to use Spinnaker and i've done a lot of AWS provisioning with pulumi (python).
  • f

    fresh-summer-65887

    01/22/2020, 3:07 PM
    Ugh this is irritating AF right now -> https://github.com/terraform-providers/terraform-provider-aws/issues/8531 Is there anything I can do at pulumi level to eradicate/mitigate this?
  • b

    broad-dog-22463

    01/22/2020, 3:16 PM
    you could add the responses into a map and then be able to pull the information out of a map by a key?
  • b

    broad-dog-22463

    01/22/2020, 3:17 PM
    thus irridicating the need for the ordering
  • b

    broad-dog-22463

    01/22/2020, 3:17 PM
    essentially using a loop and the map
    f
    • 2
    • 1
  • f

    fresh-summer-65887

    01/22/2020, 3:38 PM
    The random ordering means the next
    pulumi up
    wants to replace the cert. What I'm looking at now is adjusting the ordering in code so it matched what was previsioned previously.
    • 1
    • 1
  • i

    incalculable-engineer-92975

    01/22/2020, 3:39 PM
    Can we get built-in support for Pulumi to tag everything in AWS? I'm talking standardized, built-in support so that everything that Pulumi creates gets standardized tags. These are essential for tightly targeted IAM policies and for administration purposes. I'm already aware of the transformations support, but I'm hoping for something that's cross-language, debugged and standard.
    l
    • 2
    • 1
  • l

    late-army-57201

    01/22/2020, 5:40 PM
    hey there
  • l

    late-army-57201

    01/22/2020, 5:40 PM
    I have some troubleshooting questions
  • l

    late-army-57201

    01/22/2020, 5:40 PM
    what would be the correct channel to post in?
    g
    • 2
    • 1
  • l

    late-army-57201

    01/22/2020, 5:42 PM
    how can i make the pulumi update command return a non 0 status code when it errors
    g
    • 2
    • 1
  • a

    ambitious-crayon-56788

    01/22/2020, 5:51 PM
    Hey guys. I'm using Pulumi to create a Storage Account, App Service Plan and Function App. However, even thouhg the CLI says that all resources have been created, the Storage Account is nowhere to be found. Additionally, after finding that by default Pulumi creates Function Apps with the very out of date
    FUNCTIONS_EXTENSION_VERSION
    version
    ~1
    , I explicitly added an app setting to set it to
    ~2
    , but this is being ignored. Happy to share code and screenshots somewhere a little more private. Thanks.
    p
    b
    • 3
    • 12
  • b

    busy-dusk-74339

    01/22/2020, 10:35 PM
    does anyone have recommendations for pointing pulumi config at arbitrary filesystem files? for example, we’re using pulumi-vault, and our users all have their vault ca in a known directory,
    $HOME/pogos2/certs
    , but of course
    $HOME
    is different depending on OS and user.
  • b

    busy-dusk-74339

    01/22/2020, 10:38 PM
    if i run
    pulumi config set vault:ca_cert_dir $HOME/pogos2/certs
    naturally bash expands
    $HOME
    and it ends up in my config as
    /Users/wryfi/pogos2/certs
    .
  • b

    busy-dusk-74339

    01/22/2020, 10:38 PM
    is there any way to reference environment variables in pulumi config?
    h
    b
    • 3
    • 5
  • e

    elegant-crayon-4967

    01/23/2020, 12:52 AM
    Looking for help on a simple one here. I want to print out (first step, later I’ll pass the list) of aws accounts in our organization.
    const org = aws.organizations.getOrganization()
    accounts
    is a property of that, but I have no idea how to get to it or print out it’s promise
    h
    • 2
    • 6
  • b

    bumpy-breakfast-57632

    01/23/2020, 5:56 AM
    having issues with
    pulumi refresh
    suddenly hanging, nothing has changed and
    pulumi preview
    hanging when run in an Azure DevOps agent, also worked earlier today with no change
    b
    • 2
    • 3
  • b

    broad-helmet-79436

    01/23/2020, 10:41 AM
    How long does it usually take for release notes to go up on https://www.pulumi.com/docs/get-started/install/versions/? I was looking for the 1.9.0 changelog, and ended up having to check out the github page 🙂 not a huge issue, obviously
  • b

    broad-helmet-79436

    01/23/2020, 10:42 AM
    oh, never mind, there’s no changelog for 1.9.0 there either 😕
    w
    • 2
    • 2
  • b

    broad-helmet-79436

    01/23/2020, 10:52 AM
    Heh. on 1.9.0 I’m just seeing
    error: missing google credentials
    no matter what I do now (
    pulumi stack ls
    ,
    pulumi refresh
    for example)
    • 1
    • 1
  • b

    billowy-laptop-45963

    01/23/2020, 6:32 PM
    I'm looking to reuse cloudformation infrastructure with aws.cloudformation.Stack() resources. aws.cloudformation.Stack has a limit on the template size on disk after which you have to upload it to s3 and give it an s3 uri. Is there anything already in pulumi I can use to upload templates to a temporary place in s3 to be able to use with aws.cloudformation.Stack ?
    w
    • 2
    • 3
  • e

    elegant-crayon-4967

    01/23/2020, 9:33 PM
    If a resource is created with a provider
    const foo = new aws.resource(name { provider: my provider })
    and that provider information is changed, Pulumi doesn’t seem to recognize that change to the resource. This is helpful in changing accounts for resources or regions on the resource.
    w
    • 2
    • 2
  • w

    worried-engineer-33884

    01/23/2020, 11:37 PM
    Does anyone know what this error means?
    Error calling "Runtime.evaluate(global.__inflightFunctions.id2)": Uncaught
    
          at ../../../../opt/pulumi/node_modules/@pulumi/pulumi/runtime/closure/v8_v11andHigher.js:123:23
          at fulfilled (../../../../opt/pulumi/node_modules/@pulumi/pulumi/runtime/closure/v8_v11andHigher.js:18:58)
    w
    • 2
    • 11
  • p

    polite-magician-88225

    01/24/2020, 7:10 AM
    👋 I’m here!
    🤩 1
  • f

    fast-dinner-32080

    01/24/2020, 5:09 PM
    Does Pulumi have a basic DNS module like the Terraform DNS Provider module? I can only find the DNS Simple one.
    b
    • 2
    • 2
  • c

    careful-market-30508

    01/24/2020, 9:06 PM
    Any idea how to or when python provider will be available for pulumi-eks ? (https://github.com/pulumi/pulumi-eks)
    w
    • 2
    • 1
  • f

    flat-insurance-25294

    01/25/2020, 2:02 AM
    Is someone at pulumi working on saving values? We keep running into issues because this is missing. Something like storing previously used AZ zones becomes hard unless you hardcode the zones themselves.
    g
    • 2
    • 16
  • l

    limited-honey-31480

    01/25/2020, 3:54 AM
    there is any pulumi comand to start/stop machines?
  • b

    billowy-secretary-44583

    01/26/2020, 3:34 AM
    is there a way to setup 2fa on app.pulumi.com?
    w
    • 2
    • 1
Powered by Linen
Title
b

billowy-secretary-44583

01/26/2020, 3:34 AM
is there a way to setup 2fa on app.pulumi.com?
w

white-balloon-205

01/26/2020, 5:22 AM
If you use an identity provider like GitHub or SAML you can use the 2FA associated with that provider. For email based identity there is not (yet!) 2FA.
🙏 1
View count: 1