docker images update

This commit is contained in:
havelight-ee
2023-06-20 19:51:12 +09:00
parent 813f1027b7
commit 3e93fa63e9
19 changed files with 551 additions and 3 deletions

View File

@@ -0,0 +1,49 @@
packer {
required_plugins {
amazon = {
version = ">= 0.0.2"
source = "github.com/hashicorp/amazon"
}
}
}
variable "ami_prefix" {
type = string
default = "docker-amazonlinux"
}
locals {
timestamp = regex_replace(timestamp(), "[- TZ:]", "")
}
# source 블록에는 실제 빌드할 이미지에 대한 스펙을 정의
source "amazon-ebs" "docker-amazonlinux" {
ami_name = "${var.ami_prefix}-${local.timestamp}"
instance_type = "t3.small"
region = "ap-northeast-2"
source_ami_filter {
filters = {
image-id = "ami-0eb14fe5735c13eb5"
root-device-type = "ebs"
virtualization-type = "hvm"
}
most_recent = true
owners = ["137112412989"]
}
tags = {
source_ami_name = "{{ .SourceAMIName }}"
}
ssh_username = "ec2-user"
}
build {
name = "datasaker-packer"
sources = ["source.amazon-ebs.docker-amazonlinux"]
provisioner "ansible" {
playbook_file = "../ansible/docker_roles.yaml"
user = "ec2-user"
extra_arguments = ["--become"]
ansible_env_vars = ["ANSIBLE_HOST_KEY_CHECKING=False"]
}
}