How do I decode this error? `aws:ec2/launchTemplat...
# aws
d
How do I decode this error?
aws:ec2/launchTemplate:LaunchTemplate resource 'spot-workers' has a problem: ConflictsWith
My LaunchTemplate looks like this:
Copy code
const spotWorkersLaunchTemplate = new aws.ec2.LaunchTemplate('spot-workers', {
  imageId: 'ami-067bfa3d76de7a6b7',
  iamInstanceProfile: {
    arn: spotPricingProfile.arn,
    name: spotPricingProfile.name,
  },
});
g
Unfortunately, we're not providing a great error message here (hoping to improve that with https://github.com/pulumi/pulumi/issues/5586). I suspect you should not be specifying both
arn
and
name
on
iamInstanceProfile
.
d
@gentle-diamond-70147 thanks, that was it!
👍 1