From 9220228b02ac38a6cf6e9a4a1e2c908a42374b3e Mon Sep 17 00:00:00 2001 From: David John Arnold Jr Date: Fri, 12 Jul 2024 16:45:30 -0700 Subject: [PATCH] Delete packer directory --- packer/rhel-arm.pkr.hcl | 37 ------------------------------------- 1 file changed, 37 deletions(-) delete mode 100644 packer/rhel-arm.pkr.hcl diff --git a/packer/rhel-arm.pkr.hcl b/packer/rhel-arm.pkr.hcl deleted file mode 100644 index dcbad04..0000000 --- a/packer/rhel-arm.pkr.hcl +++ /dev/null @@ -1,37 +0,0 @@ -packer { - required_plugins { - amazon = { - version = ">= 1.2.8" - source = "github.com/hashicorp/amazon" - } - ansible = { - version = ">= 1.1.1" - source = "github.com/hashicorp/ansible" - } - } -} - -variable "subnet_id" {} -variable "security_group_id" {} - -source "amazon-ebs" "rhel-arm" { - ami_name = "arm-rhel-image" - instance_type = "t4g.micro" - source_ami = "ami-xxx" # Need to change - ssh_username = "ec2-user" - subnet_id = var.subnet_id - security_group_ids = [ - var.security_group_id - ] - architecture = "arm64" -} - -build { - name = "arm-rhel-build" - sources = [ - "source.amazon-ebs.rhel-arm" - ] - provisioner "ansible" { - playbook_file = "../ansible/playbook.yml" - } -} \ No newline at end of file