Clean Code
This commit is contained in:
49
01-old/packer/build_ami_security/docker-amazon.pkr.hcl
Normal file
49
01-old/packer/build_ami_security/docker-amazon.pkr.hcl
Normal 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"]
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user