Patrick Florek

Results 40 comments of Patrick Florek

Maybe we put **keyword** also to the other sections There's another PR https://github.com/jsonresume/resume-schema/issues/420

closes https://github.com/jsonresume/resume-schema/issues/420

Need also the keyword feature

Had same error. Under Windows 7 with Docker Toolbox (Docker 17.10-CE) I got it successfully installed by: `docker plugin install vieux/sshfs sshkey.source=/c/Users/myuser/id_rsa` My problem was that Docker Toolbox mounts only...

Hey @kiwi-33 , yes, the AWS organization API is not able to create some resources concurrently. Therefore you may use `deployment.node.addDependency(security)` to enforce the sequential creation of sibling resources. `addDependency`...

Hey @moltar , thank you for your ideas. I've just created a poc with the [Aspects](https://docs.aws.amazon.com/cdk/v2/guide/aspects.html): https://github.com/pepperize/cdk-organizations/pull/547 WDYT???

You may try out the aspect to chain the dependencies to sequentially deploy organization resources. Update to 0.6.1 and add to your stack ```typescript import { DependencyChain } from "@pepperize/cdk-organizations";...

Hey @lkolchin , thanks for the error description. I could reproduce it easily as a test case. The reason for the circular dependency could be solved. Previously while using `attachPolicy`...

@lkolchin The first is obvious. Due to change of the scope, a new resource is added, the old gets removed. We have to configure `ignoreErrorCodesMatching` that the resource won't fail....

@kiwi-33 , @moltar , @lkolchin please have a look at https://github.com/pepperize/cdk-organizations/pull/663 WDYT?