Hi - Are there any functions to create a users in ...
# aws
a
Hi - Are there any functions to create a users in AWS Managed Microsoft AD?
l
No, I think I created a feature request for that... there's an AzureAD provider, but not a hostedAD.
a
Thanks - Is there a function that calls the aws cli?
l
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
Thanks, again!