aboutsummaryrefslogtreecommitdiff
path: root/profiles/alpine.conf
blob: e282e6f750e674b04df7f1b76c24b2832c71bf03 (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
### Profile for Building the Publically-Available Alpine Linux AMIs
# vim: ts=2 et:

version-3_10  { include required("version/3.10") }
version-3_9   { include required("version/3.9") }
version-edge  { include required("version/edge") }
arch-x86_64   { include required("arch/x86_64") }

# profile vars
alpine {
  # default profile revision is 'r0', reset for each new version release!
  #revision = "r0"

  ami_desc_suffix = " - https://github.com/mcrute/alpine-ec2-ami"

  build_region  = "us-west-2"
  build_subnet  = "subnet-b80c36e2"
  ami_access {
    all = true    # these AMIs are publicly available
  }
  ami_regions {
    ALL = true
  }
}

# Build definitions
BUILDS {
  # merge version, arch, and profile vars
  v3_10-x86_64  = ${version-3_10} ${arch-x86_64} ${alpine}
  v3_9-x86_64   = ${version-3_9}  ${arch-x86_64} ${alpine}
  edge-x86_64   = ${version-edge} ${arch-x86_64} ${alpine}
}