This message was deleted.
# general
s
This message was deleted.
w
Does this example from the page help?
Copy code
import * as pulumi from "@pulumi/pulumi";
import * as aws from "@pulumi/aws";

const account = new aws.organizations.Account("account", {
    email: "<mailto:john@doe.org|john@doe.org>",
});
If not - what beyond that are you looking to accomplish?
e
I had one of my more versed coworkers help me out. That was most of it but he showed me how to add
name
and
roleName
parameters to the
const
stanza. For our accounts we define both of those on creation so we don’t have to log in as root later. Thanks!