quaint-hydrogen-7228
10/23/2022, 1:01 PMDiagnostics:
aws:lb:LoadBalancer (loadbalancedserviceLB1BE8EDCE):
error: aws:lb/loadBalancer:LoadBalancer resource 'loadbalancedserviceLB1BE8EDCE' has a problem: "name" cannot be longer than 32 characters: "loadbalancedserviceLB1BE8EDCE-403d9b7". Examine values at 'LoadBalancer.Name'.
The corresponding code looks like this:
const lbservice = new ApplicationLoadBalancedFargateService(this, 'loadbalanced-service', {
cluster,
taskDefinition: taskdef,
desiredCount: 2,
serviceName: 'my-service',
circuitBreaker: { rollback: true },
publicLoadBalancer: true,
listenerPort: webserverPort,
});
The name part is not an issue with regular AWS CDK, and Pulumi generates a different (shorter) name than AWS CDK, but still too short compared to name lengths allowed by CloudFormation, it seems. The question is really what to think and consider in terms of name issues here, what would be preferred approaches besides keeping construct id values short - and how many levels will this work out with?white-balloon-205
11/11/2022, 7:38 AMname
through explicitly in the mapping linked below if provided (which it will always be I believe?) so that Pulumi doesn't apply it's own autonaming here. If you open an issue on this - we can look into whether that is indeed the right resolution.
https://github.com/pulumi/pulumi-cdk/blob/342f7d5bbbc0d272c7e1616ae108b04c478add5d/src/aws-resource-mappings.ts#L210