Skip to content

Commit

Permalink
Move user_data.sh to the main project directory
Browse files Browse the repository at this point in the history
This script belongs with the rest of the Packer code.
  • Loading branch information
jsf9k committed Dec 16, 2024
1 parent 9270f62 commit 5fad3a7
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion ami_arm64.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ source "amazon-ebs" "arm64" {
# Many Linux distributions are now disallowing the use of RSA keys,
# so it makes sense to use an ED25519 key instead.
temporary_key_pair_type = "ed25519"
user_data_file = "ansible/user_data.sh"
user_data_file = "user_data.sh"
vpc_filter {
filters = {
"tag:Name" = "AMI Build"
Expand Down
2 changes: 1 addition & 1 deletion ami_x86_64.pkr.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ source "amazon-ebs" "x86_64" {
# Many Linux distributions are now disallowing the use of RSA keys,
# so it makes sense to use an ED25519 key instead.
temporary_key_pair_type = "ed25519"
user_data_file = "ansible/user_data.sh"
user_data_file = "user_data.sh"
vpc_filter {
filters = {
"tag:Name" = "AMI Build"
Expand Down
File renamed without changes.

0 comments on commit 5fad3a7

Please sign in to comment.