How would you investigate the contents of a pulumi...
# getting-started
s
How would you investigate the contents of a pulumi object in python?
aws_region_info = aws.get_regions()
print(aws_region_info)
Basic python print() calls return unusable things like "<pulumi_aws.get_regions.AwaitableGetRegionsResult object at 0x00000273AF848E00>"
f
real quick you can do something like
print(vars(aws_region_info))
s
awesome! thanks!
high five 1