@intentius/chant-lexicon-aws 0.0.24 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/src/index.ts CHANGED
@@ -78,11 +78,13 @@ export {
78
78
  LambdaScheduled, ScheduledLambda,
79
79
  LambdaSqs, LambdaEventBridge, LambdaDynamoDB, LambdaS3, LambdaSns,
80
80
  VpcDefault, FargateAlb, AlbShared, FargateService, RdsInstance, RdsPostgres,
81
+ EfsWithAccessPoint,
81
82
  } from "./composites/index";
82
83
  export type {
83
84
  LambdaFunctionProps, LambdaApiProps, ScheduledLambdaProps,
84
85
  LambdaSqsProps, LambdaEventBridgeProps, LambdaDynamoDBProps, LambdaS3Props, LambdaSnsProps,
85
86
  VpcDefaultProps, FargateAlbProps, AlbSharedProps, FargateServiceProps, RdsInstanceProps, RdsPostgresProps,
87
+ EfsWithAccessPointProps,
86
88
  } from "./composites/index";
87
89
 
88
90
  // Code generation pipeline
package/src/serializer.ts CHANGED
@@ -303,9 +303,7 @@ function serializeToTemplate(
303
303
  template.Outputs = template.Outputs ?? {};
304
304
  for (const output of outputs) {
305
305
  template.Outputs[output.outputName] = {
306
- Value: {
307
- "Fn::GetAtt": [output.sourceEntity, output.sourceAttribute],
308
- },
306
+ Value: output.getOutputValue(),
309
307
  };
310
308
  }
311
309
  }