sparse-intern-71089
08/02/2022, 9:33 PMhappy-grass-18954
08/02/2022, 10:42 PMawait stack.SetConfigAsync("aws:assumeRole.roleArn", new ConfigValue("arn:aws:iam::xxxxxx:role/mcrTestPulumi"));
happy-grass-18954
08/02/2022, 10:42 PMvar assumeRoleSettings = JsonSerializer.Serialize(new Dictionary<string, object>
{
{
"assumeRole",
new[]
{
new Dictionary<string, object?>
{
{ "roleArn", "arn:aws:iam::xxxx:role/mcrTestPulumi" }
},
}
},
});
happy-grass-18954
08/02/2022, 10:56 PMvar assumeRoleSettings2 = JsonSerializer.Serialize(new Dictionary<string, string>
{
{ "roleArn", "arn:aws:iam::504653139595:role/mcrTestPulumi" }
});
await stack.SetConfigAsync("aws:assumeRole", new ConfigValue(assumeRoleSettings2));
happy-grass-18954
08/02/2022, 10:57 PMworried-city-86458
08/03/2022, 10:32 PMhappy-grass-18954
08/10/2022, 12:47 AMclean-controller-92732
08/10/2022, 9:33 PMworried-city-86458
08/11/2022, 1:33 AMCan you use the AWS provider with Inline program?I would expect so as that's just another way to wire up the program body