https://pulumi.com logo
Title
a

ambitious-monitor-34019

03/12/2021, 12:01 AM
Hi - Are there any functions to create a users in AWS Managed Microsoft AD?
l

little-cartoon-10569

03/12/2021, 12:11 AM
No, I think I created a feature request for that... there's an AzureAD provider, but not a hostedAD.
a

ambitious-monitor-34019

03/12/2021, 12:28 AM
Thanks - Is there a function that calls the aws cli?
l

little-cartoon-10569

03/12/2021, 12:45 AM
Well, sort of.. there's a wrapper for each cli exposed in Pulumi. Onesec, I've forgotten how to invoke it.
Ah yes.
aws.sdk
.
That's just a facade in front of the SDK though.
const sdk: typeof import("aws-sdk");
So you can do this:
const ec2Client = new aws.sdk.EC2();
a

ambitious-monitor-34019

03/12/2021, 1:31 PM
Thanks, again!