This message was deleted.
# general
s
This message was deleted.
b
what does your ASG declaration look like
b
Copy code
const asg = new aws.autoscaling.Group(awsResourceName, {
    minSize: config.minAvailable,
    maxSize: config.replicas,
    desiredCapacity: config.replicas,
    forceDelete: true,
    launchConfiguration: launchConfiguration.arn,
    targetGroupArns: [targetGroup.arn],
    vpcZoneIdentifiers: ['subnet-1', 'subnet-2', 'subnet-3'],
    // terminationPolicies: ['OldestLaunchConfiguration'],
    waitForCapacityTimeout: '20m',
    waitForElbCapacity: 1,
    healthCheckGracePeriod: 600,
    healthCheckType: 'ELB',

});
b
hmmm looks OK. I will say that for me
LaunchConfiguration
property says it is expecting a
Name
not an `Arn`:
b
Yep, I try with the name instead and i’m getting the same error