You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
if (params.Apply_Terraform||params.Destroy_Terraform) {
272
+
if (!params.Skip_Terraform&¶ms.Apply_Terraform||params.Destroy_Terraform) {
224
273
// See https://support.cloudbees.com/hc/en-us/articles/226554067-Pipeline-How-to-add-an-input-step-with-timeout-that-continues-if-timeout-is-reached-using-a-default-value
225
274
def userInput =false
226
275
try {
@@ -241,6 +290,29 @@ if (params.Apply_Terraform || params.Destroy_Terraform) {
241
290
}
242
291
}
243
292
293
+
if (params.Rotate_Servers) {
294
+
stage('Rotate Servers') {
295
+
node {
296
+
wrap.call({
297
+
unstash 'src'
298
+
sh ("./bin/rotate-asg.sh infra-demo-asg")
299
+
})
300
+
}
301
+
}
302
+
}
303
+
304
+
if (params.Deploy_CodeDeploy) {
305
+
stage('Deploy') {
306
+
node {
307
+
wrap.call({
308
+
unstash 'src'
309
+
sh ("./bin/deploy-codedeploy.sh ${codedeploy_target}${s3_safe_branch_name}")
Copy file name to clipboardExpand all lines: README.md
+4-1
Original file line number
Diff line number
Diff line change
@@ -14,7 +14,10 @@ See the branch [demo-20180926](https://github.com/ModusCreateOrg/devops-infra-de
14
14
15
15
See the branch [demo-20181205](https://github.com/ModusCreateOrg/devops-infra-demo/tree/demo-20181205) for the code for the demo for the [Ansible NYC talk _Ansible Image Bakeries: Best Practices & Pitfalls_](https://www.meetup.com/Ansible-NYC/events/256728741/). Slides from this presentation are on [SlideShare](https://www.slideshare.net/RichardBullingtonMcG/ansible-image-bakeries-best-practices-and-pitfalls).
16
16
17
-
See the branch [demo-20190130](https://github.com/ModusCreateOrg/devops-infra-demo/tree/demo-20180130) for the code for the demo for the [Big Apple DevOps talk _Monitoring and Alerting as code with Terraform and New Relic_](https://www.meetup.com/Big-Apple-DevOps/events/257744262/). Slides from this presentation are on [Slideshare](https://www.slideshare.net/RichardBullingtonMcG/monitoring-and-alerting-as-code-with-terraform-and-new-relic).
17
+
See the branch [demo-20190130](https://github.com/ModusCreateOrg/devops-infra-demo/tree/demo-20190130) for the code for the demo for the [Big Apple DevOps talk _Monitoring and Alerting as code with Terraform and New Relic_](https://www.meetup.com/Big-Apple-DevOps/events/257744262/). Slides from this presentation are on [Slideshare](https://www.slideshare.net/RichardBullingtonMcG/monitoring-and-alerting-as-code-with-terraform-and-new-relic).
18
+
19
+
See the branch [demo-20191109](https://github.com/ModusCreateOrg/devops-infra-demo/tree/demo-20191l09) for the code for the demo for the [BSidesCT 2019 talk g Apple DevOps talk _Extensible DevSecOps pipelines with Jenkins, Docker, Terraform, and a kitchen sink full of scanners_](https://bsidesct.org/schedule/). Slides from this presentation are on
0 commit comments