From a770f2bed2bb25a972964e820d4f0bf3c43d3772 Mon Sep 17 00:00:00 2001 From: Jeremy Frasier Date: Wed, 11 Dec 2024 14:07:15 -0500 Subject: [PATCH] Use the correct packer build commands --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 33231a6..a085903 100644 --- a/README.md +++ b/README.md @@ -118,7 +118,7 @@ Here is an example of how to kick off a pre-release build: ```console pip install --requirement requirements-dev.txt ansible-galaxy install --force --force-with-deps --role-file ansible/requirements.yml -AWS_PROFILE=cool-images-ec2amicreate-skeleton-packer packer build --timestamp-ui -var release_tag=$(./bump-version show) -var is_prerelease=true packer.pkr.hcl +AWS_PROFILE=cool-images-ec2amicreate-skeleton-packer packer build --timestamp-ui -var release_tag=$(./bump-version show) -var is_prerelease=true . ``` If you are satisfied with your pre-release image, you can easily create a release @@ -135,7 +135,7 @@ region_kms_keys = { ``` ```console -AWS_PROFILE=cool-images-ec2amicreate-skeleton-packer packer build --timestamp-ui -var-file release.pkrvars.hcl packer.pkr.hcl +AWS_PROFILE=cool-images-ec2amicreate-skeleton-packer packer build --timestamp-ui -var-file release.pkrvars.hcl . ``` ### Giving Other AWS Accounts Permission to Launch the Image ###