Olaf Conijn
Olaf Conijn
Would be great to have copy-to-s3 support a source-file hosted on s3 or over http. Also rename LocalPath => Source and RemotePath => Destination (destination obviously must be s3). -...
Since org-formation can run from a delegated build account and it is possible to have multiple org-formation builds running within the organization on different accounts (the more the merrier!) the...
Since it is possible to split up the build in multiple projects only 1 of which should host the organization.yml file it would be great to have a CLI command...
would be great to have a website that contains information on org-formation: - about - getting started - examples - resource providers - roadmap - etc? perhaps first look at...
Output/Export with `!Ref AWSAccount.Resources.Resource` needs to be deleted if the Resource is not part of the target the template is generated for. this works when not specifying `AWSAccount.Resources` (just `!Ref...
would be great to allow errors to be rethrown: example: ``` typescript export const main = asl.deploy.asStateMachine(async (input: Input) => { try { throw new RethrowMe("bad luck"); } catch (err)...
a set of step functions and lambdas is a single unit of deployment. the references between the statemachines and lambda's should contain the version of the lambda.
Object Binding Patterns are not supported: ``` typescript const {a, b} = input; ``` a workaround is to explicitly copy over each property: ``` typescript const a = input.a const...
Spread assignments are not supported: ``` typescript const y = {a: 1, b: 2}; const x = { ... y, c: 3}; ``` a workaround is to explicitly copy over...