hey all just so i am clear are component resources...
# getting-started
a
hey all just so i am clear are component resources in pulumi equivalent to modules in Terraform?
l
Inasmuch as they're one way to organize resources, yes.
There's plenty of differences, since they're implemented as classes of your language of choice.
a
got it ...just did some further reading...i like the Class based implementation in Python
l
Yep. You can use any language construct you like. For languages that don't require a class-per-file (like JS/TS), a file would probably be closer to the Terraform module concept.
a
thanks makes sense...i tend to do the class per file approach 🙂