7de0dc598e
* This plugin gives Jenkins the ability to spawn amazon cloudformation stacks before running the build and stopping it at the end * This change adds cloudformation ability to the builders and the publishers to create stacks and to the publishers to tear the stack down Change-Id: I8041382fc6f1d569c322088a3bc8812332a131e8
24 lines
565 B
YAML
24 lines
565 B
YAML
builders:
|
|
- cloudformation:
|
|
- name: "foo"
|
|
description: "Build the foo stack"
|
|
recipe: "foo.json"
|
|
parameters:
|
|
- "Key1=foo"
|
|
- "Key2=fuu"
|
|
timeout: 3600
|
|
access-key: "$AWS_ACCESS_KEY"
|
|
secret-key: "$AWS_SECRET_KEY"
|
|
region: us-west-2
|
|
sleep: 5
|
|
- name: "bar"
|
|
description: "Build the bar stack"
|
|
recipe: "bar.json"
|
|
parameters:
|
|
- "Key1=bar"
|
|
- "Key2=baa"
|
|
timeout: 3600
|
|
access-key: "$AWS_ACCESS_KEY"
|
|
secret-key: "$AWS_SECRET_KEY"
|
|
region: us-west-1
|