Channels
welcome
pulumi-cdk
cloudengineering
yaml
blog-posts
localstack
pulumi-ai
package-authoring
general
pulumiup-booth-support
oracle-cloud-infrastructure
learn-pulumi-events
linen
registry
built-with-pulumi
pulumi-cloud
contribex
testingtesting321
hacktoberfest
pulumi-crosscode
content-share
finops
multi-language-hackathon
office-hours
workshops
gitlab
pulumi-kubernetes-operator
jobs
pulumi-deployments
dotnet
aws
golang
announcements
java
pulumiverse
python
install
getting-started
cloudengineering-support
testingtesting123
hackathon-03-19-2020
typescript
google-cloud
contribute
azure
kubernetes
docs
automation-api
status
Powered by
#general
Title
g
gray-city-50684
10/04/2018, 3:11 PM
One more 🙂 I know there is a method called “apply” on pulumi.Output objects. Is there something similar for pulumi.Input?
w
white-balloon-205
10/04/2018, 3:13 PM
An Input is just an alias for
T | Output<T>
so there are no methods on it. You can convert an Input to an Output and use
apply
on that with
pulumi.output(input).apply()
.
g
gray-city-50684
10/04/2018, 3:14 PM
yes, I meant if there is a utility method somewhere
I’ll try this one thanks
Post