aboutsummaryrefslogtreecommitdiff
path: root/profiles/test.conf
blob: eeec6a5213c1317d0eee4074bba8077aebecff96 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
### Profile for Testing Builds

version-current { include "version/current" }
version-edge    { include "version/edge" }
arch-x86_64     { include "arch/x86_64" }

# specific to this profile's builds
test {
  build_region  = "us-west-2"
  build_subnet  = "subnet-033a30d7b5220d177"
  ami_regions {
    us-east-1 = true
    us-west-2 = true
  }
}

# Build definitions
builds {
  # merge version, arch, profile, and build vars
  current-x86_64 = ${version-current} ${arch-x86_64} ${test} {
    revision = "test"
  }

  # merge version, arch, profile, and build vars
  edge-x86_64 = ${version-edge} ${arch-x86_64} ${test} {
    ami_regions {
      us-east-1 = false
    }
    # try rng-tools instead of haveged
    pkgs {
      haveged   = false
      rng-tools = true
    }
    svcs {
      haveged = false
      rngd    = "boot"
    }
  }
}