AWS DevOps Engineer Professional Final Exam Study Guide 2022 with complete solution Continuous Integration .>>Development practice that requires devs to push code to a repo often. A tester/builder checks the code as soon
...
AWS DevOps Engineer Professional Final Exam Study Guide 2022 with complete solution Continuous Integration .>>Development practice that requires devs to push code to a repo often. A tester/builder checks the code as soon as it is published which allows devs to receive feedback faster. This allows devs to focus on writing code rather than running and waiting for tests to build & compile.
Continuous Delivery .>>Development practice that ensures software can be released reliably whenever needed. This ensures frequent as well as quick deployments. Most of the deployment is automated but may involve a manual approval step. (semi automation)
Continuous Deployment .>>A set of practices that enable every change that passes automated tests to be automatically deployed to production with no need for manual intervention (full automation).
branch, pull .>>GIT best practices dictate that if you have NEW changes to make to a code base, you should utilize a _______ rather than a new repository. You can then create _____ requests then merge into master.
IAM Policy With Explicit Deny .>>In AWS, how do you protect pushes/merges from unauthorized users to the master branch (using Code Commit).
T .>>T/F: Code Commit contains several triggers and configurable notifications that can call SNS topics and Lambda functions in response to various activity within your repository.
AWS Code Build .>>A fully managed build service that is continuously scaling. It leverages docker under the hood and is secured through compatibility with AWS KMS, VPC's, and AWS Cloudtrail.
5 minutes, 8 hours .>>The minimum timeout for AWS Code Build? The maximum timeout for AWS Code Build?
buildspec.yml .>>A collection of build commands and related settings, in YAML format, that CodeBuild uses to run a build.
env .>>This optional parameter of the buildspec.yml file allows for variable declaration, parameter-store, exported variables, secrets-manager, et.al.
phases .>>This parameter of the buildspec.yml file allows you to designate commands that will occur during the install, pre_build, build, and post_build stages of the build/test.
artifacts .>>This parameter of the buildspec.yml file allows you to save various files after a build is done (S3).
cache .>>This parameter of the buildspec.yml file is used to store files which can speed up deployment during subsequent builds/tests.
finally .>>This parameter of the buildspec.yml file will allow you to designate commands to run even if prior commands fail.
override .>>You can specify env variables in buildspec.yml OR you can add them as environment variables ___________ when configuring a new build operation (from the console).
[Show More]