forked from aws/amazon-ecs-ami
-
Notifications
You must be signed in to change notification settings - Fork 0
/
al1.pkr.hcl
141 lines (122 loc) · 3.29 KB
/
al1.pkr.hcl
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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
locals {
ami_name_al1 = "${var.ami_name_prefix_al1}${var.ami_version}-amazon-ecs-optimized"
}
source "amazon-ebs" "al1" {
ami_name = "${local.ami_name_al1}"
ami_description = "Amazon Linux AMI amzn-ami-2018.03.${var.ami_version} x86_64 ECS HVM GP2"
instance_type = "c5.large"
launch_block_device_mappings {
volume_size = 8
delete_on_termination = true
volume_type = "gp2"
device_name = "/dev/xvda"
}
launch_block_device_mappings {
volume_size = 22
delete_on_termination = true
volume_type = "gp2"
device_name = "/dev/xvdcz"
}
region = var.region
source_ami_filter {
filters = {
name = "${var.source_ami_al1}"
}
owners = ["amazon"]
most_recent = true
}
user_data_file = "scripts/al1/user_data.sh"
ssh_username = "ec2-user"
tags = {
os_version = "Amazon Linux"
source_image_name = "{{ .SourceAMIName }}"
ecs_runtime_version = "Docker version ${var.docker_version_al1}"
ecs_agent_version = "${var.ecs_version_al1}"
ami_type = "al1"
ami_version = "2018.03.${var.ami_version}"
}
}
build {
sources = [
"source.amazon-ebs.al1"
]
provisioner "shell" {
inline_shebang = "/bin/sh -ex"
inline = [
"while [ ! -f /var/lib/cloud/instance/boot-finished ]; do echo 'Waiting for cloud-init...'; sleep 1; done"
]
}
provisioner "file" {
source = "files/al1/90_ecs.cfg"
destination = "/tmp/90_ecs.cfg"
}
provisioner "shell" {
inline_shebang = "/bin/sh -ex"
inline = [
"sudo mv /tmp/90_ecs.cfg /etc/cloud/cloud.cfg.d/90_ecs.cfg"
]
}
provisioner "file" {
source = "files/al1/ecs-custom-motd"
destination = "/tmp/ecs-custom-motd"
}
provisioner "shell" {
inline_shebang = "/bin/sh -ex"
inline = [
"sudo mv /tmp/ecs-custom-motd /etc/update-motd.d/30-banner",
"sudo chmod 755 /etc/update-motd.d/30-banner"
]
}
provisioner "shell" {
inline_shebang = "/bin/sh -ex"
inline = [
"mkdir /tmp/additional-packages"
]
}
provisioner "file" {
source = "additional-packages/"
destination = "/tmp/additional-packages"
}
provisioner "shell" {
inline_shebang = "/bin/sh -ex"
inline = [
"sudo yum install -y docker-${var.docker_version_al1} ecs-init-${var.ecs_version_al1} ${local.packages_al1}"
]
}
provisioner "shell" {
script = "scripts/install-additional-packages.sh"
}
provisioner "shell" {
script = "scripts/install-exec-dependencies.sh"
environment_vars = [
"REGION=${var.region}",
"EXEC_SSM_VERSION=${var.exec_ssm_version}",
"AIR_GAPPED=${var.air_gapped}"
]
}
provisioner "shell" {
script = "scripts/al1/configure-docker-storage-setup.sh"
}
provisioner "shell" {
script = "scripts/al1/unlock-releasever.sh"
}
provisioner "shell" {
script = "scripts/al1/check-ownership.sh"
}
provisioner "shell" {
script = "scripts/append-efs-client-info.sh"
}
provisioner "shell" {
inline_shebang = "/bin/sh -ex"
inline = [
"sudo usermod -a -G docker ec2-user"
]
}
provisioner "shell" {
script = "scripts/cleanup.sh"
}
post-processor "manifest" {
output = "manifest.json"
strip_path = true
}
}