aboutsummaryrefslogtreecommitdiff
path: root/profiles/test.conf
diff options
context:
space:
mode:
Diffstat (limited to 'profiles/test.conf')
-rw-r--r--profiles/test.conf28
1 files changed, 28 insertions, 0 deletions
diff --git a/profiles/test.conf b/profiles/test.conf
new file mode 100644
index 0000000..3a44458
--- /dev/null
+++ b/profiles/test.conf
@@ -0,0 +1,28 @@
1### Profile for Testing Builds
2
3version_current { include "version/current" }
4version_edge { include "version/edge" }
5arch_x86_64 { include "arch/x86_64" }
6
7# specific to this profile's builds
8test {
9 build_region = "us-west-2"
10 build_subnet = "subnet-033a30d7b5220d177"
11 ami_regions = [
12 "us-east-1"
13 "us-west-2"
14 ]
15}
16
17# Build definitions
18builds {
19 # merge version, arch, and profile vars
20 test-current-x86_64 = ${version_current} ${arch_x86_64} ${test}
21 # build-specific override
22 test-current-x86_64 {
23 revision = "test"
24 }
25
26 # merge version, arch, and profile vars
27 test-edge-x86_64 = ${version_edge} ${arch_x86_64} ${test}
28}