├── .circleci └── config.yml └── README.md /.circleci/config.yml: -------------------------------------------------------------------------------- 1 | version: 2 2 | jobs: 3 | check_for_updates: 4 | docker: 5 | - image: alpine:latest 6 | steps: 7 | - checkout # check out the code in the project directory 8 | - run: apk add bash curl 9 | - run: bash -c 'diff aws-landing-zone-initiation.yaml <(curl -s https://s3.amazonaws.com/solutions-reference/aws-landing-zone/latest/aws-landing-zone-initiation.template)' 10 | 11 | workflows: 12 | version: 2 13 | commit: 14 | jobs: 15 | - check_for_updates 16 | 17 | weekdays: 18 | jobs: 19 | - check_for_updates 20 | triggers: 21 | - schedule: 22 | cron: '0 15 * * 1-5' 23 | filters: 24 | branches: 25 | only: 26 | - master 27 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # AWS Landing Zone 2 | 3 | > AWS Landing Zone helps you automate the creation of pre-configured, secure, multi-account cloud environments based on AWS best practices. It’s how you can scale AWS to your enterprise efficiently: in a repeatable manner with central control and monitoring 4 | 5 |

We are The Cloud Experts!
25 |We ❤️ Open Source and you can check out our other modules to get help with your new Cloud ideas.
27 | --------------------------------------------------------------------------------