``` let iamStack = new pulumi.StackReference(confi...
# general
m
Copy code
let iamStack = new pulumi.StackReference(config.require("aws-iam-stack"));

let clusterAutomationAccessRoleArn: pulumi.Input<string> = <pulumi.Output<string>>iamStack.getOutput("clusterAutomationAccessRoleArn");
if (config.get("clusterAutomationAccessRoleArn") != undefined) {
  clusterAutomationAccessRoleArn = config.require("clusterAutomationAccessRoleArn");
}