Hello, is there a document listing all of the Pulu...
# general
f
Hello, is there a document listing all of the Pulumi types, or can they be listed via an SDK method? For example iwth
pulumi import 'aws:iam/user:User'
where can I look to see other types under
aws:iam/
I was reading this documentation: https://www.pulumi.com/learn/importing/bulk-importing/ and saw that I can import things if they're in an array with elements in the following format:
Copy code
{
            "type": "docker:index/container:Container",
            "name": "backend-container",
            "id": "1cff08113e52781b1643097c947fa4fe92139a76a020d51c4856bf73207894a2"
        },
from AWS I'm able to ascertain the service of a resource but I'd like to be able to map it to a Pulumi type to import it. The goal is use resource explorer to find all my resources and then bulk import them