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). Parameter Store, Secrets manager .>>What two services can you utilize/integrate with your code build deployment to encrypt your environment variables during a build? T .>>T/F: Code Build allows you to encrypt artifacts before your upload them to S3 (natively within Code Build) Cloudwatch Logs .>>How can you view your previous Code Build history if the docker container that was spun up to build your application has been terminated post-build? T .>>T/F: You can utilize pre-built dashboards, create your own, and view metrics related to your Code Build deployments. CloudWatch Events .>>Using this service, you can trigger code build at certain fixed intervals OR trigger a build in response to certain actions (i.e. code commit push) Code Deploy .>>A fully managed deployment service that automates software deployments to a variety of compute services such as Amazon EC2, AWS Fargate, AWS Lambda, and your on-premises servers. Code Deploy Agent .>>In order for EC2/On-premise server to work with Code Deploy, what must each instance have? F: only works for EC2 .>>T/F: Blue/Green deployment works for both EC2 and on-prem T .>>T/F: Code Deploy does NOT provision resources (i.e. EC2 instances/lambda functions) Tags .>>You can utilize ____ with deployment groups to separate your different environment types (for example) within a Code Deploy deployment. In-Place .>>This type of Code Deploy deployment updates existing applications directly (may result in down time). Blue/Green .>>This type of Code Deploy deployment replaces existing instances with new or pre-existing instances. This requires an autoscaling group (or manually provisioned instances) OR a load balancer. T .>>T/F: There is NO direct integration between Code Deploy and Cloudwatch Logs. You would need to ensure the Code Deploy & Cloudwatch Logs agents are installed. triggers .>>To directly connect Code Deploy with (for example) an SNS topic, you can utilize _______. Manual .>>Rollback that occurs if a Code Deploy automatic rollback is not enabled. This simply allows you to rollback by redeploying the previous version/revision. deployment failure, alarm threshold met .>>What are the two automatic rollback options within Code Deploy? root directory .>>Where must the buildspec.yml file be placed by default (if you include it as part of the source code)? one .>>You can specify only ____ buildspec for a build project, regardless of the buildspec file's name. APPLICATION_NAME .>>The name of the application in CodeDeploy that is part of the current deployment (for example, WordPress_App). (Hooks environment variable) DEPLOYMENT_ID .>>The ID CodeDeploy has assigned to the current deployment (for example, d-AB1CDEF23). (Hooks environment variable) DEPLOYMENT_GROUP_NAME .>>The name of the deployment group in CodeDeploy that is part of the current deployment (for example, WordPress_DepGroup). (Hooks environment variable) DEPLOYMENT_GROUP_ID .>>The ID of the deployment group in CodeDeploy that is part of the current deployment (for example, b1a2189b-dd90-4ef5-8f40- 4c1c5EXAMPLE). (Hooks environment variable) LIFECYCLE_EVENT .>>The name of the current deployment lifecycle event (for example, AfterInstall). (Hooks environment variable) Code Deploy .>>Tagging on-premise instances are only required/applicable for what AWS Service? IAM .>>To register on-premise instances for Code Deploy, you MUST use ______ to authenticate. IAM User IAM Role .>>What are the two ARN options used to authenticate requests with AWS Code Deploy for on-premise instances? small .>>IAM user ARN for authenticating requests for Code Deploy is useful for ______ number of instances. This is due to the administrative burden of having to create an IAM user per instance. sts, large .>>IAM role ARN for authenticating requests for Code Deploy utilizes _____ to generate temporary credentials. It is more secure and is recommended for ________ number of instances. shift traffic .>>With Code Deploy for Lambda, it allows you to _______ _______ from an existing lambda function(s) to the newly deployed version(s) with various deployment settings. Linear .>>Code Deploy deployment setting in which traffic is shifted in equal increments with an equal number of minutes in between each increment. (Gradual shift) Canary .>>Code Deployment deployment settting in which traffic is shifted in TWO increments. You choose a predefined option that specify the percentage of traffic shifted to lambda in the first increment, interval in mins in between, then the remaining percentage of traffic is shifted in the second increment. (One then all shift) Start Before Allow Traffic (hook) Allow Traffic After Allow Traffic (hook) End .>>What are the steps for Lambda Code Deploy appspec.yml file and identify the hooks. central, new .>>When you initially set up your Code Pipeline, you can select your artifact store to use a _______ S3 bucket (re-use) or a default bucket which will create a ______ bucket per pipeline. T .>>T/F: You must create 1 Pipeline PER branch in your Git Repo/Code Commit repo. Cloudwatch Events (auto-trigger pipeline when change event occurs i.e. code source updated) Code Pipeline (periodically check for changes itself) .>>What are the two options for change detection in Code Pipeline? Explain them. F (You can select any region outside of where you defined your Pipeline for various stages and their action groups) .>>T/F: It is NOT possible to use code pipeline in a different region than where you would like to deploy/test your code in various stages. Stages .>>Code Pipeline _______ contain action groups that can execute steps in parallel or sequential order. AWS Managed, customer managed .>>In the Code Pipeline setup configuration, you can choose to use a default ______ ______ key or a custom _____ _______ key from KMS (that you created) for the encryption settings. Artifacts .>>_________ (stored in S3) allow Code Pipeline to pass data between services in each stage and their corresponding action group actions. S3 .>>__ is the backbone of Code Pipeline. Each Pipeline execution will interact with this service many times. (Read from and write data there) Manual Approval .>>You can add _______ _______ action(s) to various stages in a Code Pipeline to require various approvals before the subsequent action is executed (i.e. Continuous Delivery) runOrder .>>You can utilize the _________ parameter in Code Pipeline to dictate the order of actions within your stages in an execution. higher .>>A ______ runOrder value indicates that particular action will run after another previous action. (i.e runOrder = 5 will run after runOrder = 4) equal .>>Two actions with _______ runOrder values will execute in parallel. T .>>T/F: A Code Pipeline action group within a stage can have multiple "mixed and matched" parallel and sequential actions. PutJobSuccessResult, PutJobFailureResult .>>In order to use Lambda custom action jobs with CodePipeline, you must include what two API calls? continuationToken .>>token generated by a job worker (such as an AWS CodeDeploy deployment or Code Pipeline action) that a successful job provides to identify the running instance of the action. T .>>T/F: You need the continuationToken in order to be able to obtain a result form the PutJobSuccess API call for Lambda with CodePipeline. AWS Code Star .>>An all in one (AIO) integrated development environment for your application. It integrates with many AWS and 3rd party dev tools. template.yml .>>To modify/customize/configure your Code Star deployment, you must edit the _________ file.

 

No comments found.
Login to post a comment
This item has not received any review yet.
Login to review this item
No Questions / Answers added yet.
Price $16.00
Add To Cart

Buy Now
Category exam bundles
Comments 0
Rating
Sales 0

Buy Our Plan

We have

The latest updated Study Material Bundle with 100% Satisfaction guarantee

Visit Now
{{ userMessage }}
Processing