sparse-intern-71089
02/09/2021, 4:10 PMbored-oyster-3147
02/09/2021, 4:14 PMbig-potato-91793
02/09/2021, 4:15 PMconst 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',
});
bored-oyster-3147
02/09/2021, 4:22 PMLaunchConfiguration
property says it is expecting a Name
not an `Arn`:big-potato-91793
02/09/2021, 4:38 PM