aboutsummaryrefslogtreecommitdiff
path: root/variables.yaml-default
diff options
context:
space:
mode:
Diffstat (limited to 'variables.yaml-default')
-rw-r--r--variables.yaml-default77
1 files changed, 0 insertions, 77 deletions
diff --git a/variables.yaml-default b/variables.yaml-default
deleted file mode 100644
index 0cd3cc2..0000000
--- a/variables.yaml-default
+++ /dev/null
@@ -1,77 +0,0 @@
1### Builder-Instance Options ###
2
3# Region to build in, if we initiate a build from outside AWS
4region:
5
6# Subnet ID in which the builder instance is to be launched. VPC will be
7# automatically determined.
8subnet:
9
10# Optional security group to apply to the builder instance
11security_group:
12
13# By default, public IPs are assigned (or not) per the subnet's configuration.
14# Set to "true" or "false" to explicitly override the subnet's public IP auto-
15# assign configuration.
16public_ip: ""
17
18
19### Build Options ###
20
21# Uncomment/increment every for every rebuild of an Alpine release;
22# re-comment/zero for every new Alpine release
23#revision: "-1"
24
25# AMI name prefix and suffix
26ami_name_prefix: "alpine-ami-"
27ami_name_suffix: ""
28
29# AMI description prefix and suffix
30ami_desc_prefix: "Alpine Linux "
31ami_desc_suffix: " - https://github.com/mcrute/alpine-ec2-ami"
32
33# List of custom lines to add to /etc/apk/repositories
34add_repos:
35# - "@my-repo http://my-repo.tld/path"
36
37# List of additional packages to add to the AMI.
38add_pkgs:
39# - package-name
40
41# Additional services to start at the specified level
42add_svcs:
43# boot:
44# - service1
45# default:
46# - service2
47
48# Size of the AMI image (in GiB).
49volume_size: "1"
50
51# Encrypt the AMI?
52encrypt_ami: "false"
53
54# List of groups that should have access to the AMI. However, only two
55# values are currently supported: 'all' for public, '' or unset for private.
56ami_access:
57 - "all"
58
59# List of regions to where the AMI should be copied
60deploy_regions:
61 - "us-east-1"
62 - "us-east-2"
63 - "us-west-1"
64 - "us-west-2"
65 - "ca-central-1"
66 - "eu-central-1"
67 - "eu-north-1"
68 - "eu-west-1"
69 - "eu-west-2"
70 - "eu-west-3"
71 - "ap-northeast-1"
72 - "ap-northeast-2"
73# - "ap-northeast-3" # skipped, available by subscription only
74 - "ap-southeast-1"
75 - "ap-southeast-2"
76 - "ap-south-1"
77 - "sa-east-1"