Hi, I've a general question regarding Pulumi, does...
# general
s
Hi, I've a general question regarding Pulumi, does Pulumi have a concept of data source ? (in Terraform, we use data keywoard for that, https://www.terraform.io/docs/language/data-sources/index.html)
f
pulumi has resources and functions
a function is basically the equivalent of a datasource
you have a bunch of resources, and bunch of
Get*
functions
(which I'm pretty sure are terraform data sources under the hood)
r
Yes, data sources in tf map to functions in pulumi
👍 1
s
I see , thanks for info