-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
PLT-186: Debugging #18
Merged
Merged
Changes from all commits
Commits
Show all changes
41 commits
Select commit
Hold shift + click to select a range
9927272
add id-token permission
gfreeman-navapbc 221de6c
add runner version variable
gfreeman-navapbc 6ec79ac
add stashed changes
gfreeman-navapbc 8df2618
add ami_account and ami_filter variables
gfreeman-navapbc 214b924
fix var flag
gfreeman-navapbc 94c64c7
add quotes
gfreeman-navapbc 3c5119e
build entire directory
gfreeman-navapbc a134de7
attempt to populate ami account and filter
gfreeman-navapbc d26ac98
add vars to environment and validate with vars
gfreeman-navapbc fe58704
add datasources in validation
gfreeman-navapbc 085a5cb
add most_recent flag
gfreeman-navapbc 853fa78
move to correct spot
gfreeman-navapbc e856fa1
grab vpc id from data
gfreeman-navapbc 3de8a8e
attempt to filter for vpc_id
gfreeman-navapbc d0b6a88
use correct tag
gfreeman-navapbc 87d5c61
change var name to match repo vars
gfreeman-navapbc 0247b49
add security group to setup
gfreeman-navapbc 282b28c
spelling
gfreeman-navapbc ee6a52a
multiline command fix
gfreeman-navapbc aca19e2
security_group instead of subnet
gfreeman-navapbc 803aa2e
specify subnet
gfreeman-navapbc 8db0fa3
layer is a tag
gfreeman-navapbc b2d9030
convert to old style substitution
gfreeman-navapbc b27307d
missing backslash
gfreeman-navapbc 4201c1b
set ssh_interface to session manager
gfreeman-navapbc 4762081
try private_ip before setting up ssm
gfreeman-navapbc 2e6bea2
add instance profile, go back to ssm
gfreeman-navapbc cee197e
fix hyphen
gfreeman-navapbc d728fb6
bump timeout
gfreeman-navapbc e4517f9
remove session_manager
gfreeman-navapbc 891a6ff
self-hosted
gfreeman-navapbc 7378e22
checkout to v3 from v4, node issue
gfreeman-navapbc 1451c0f
move to session manager
gfreeman-navapbc 460da10
build over private ip, ssm isnt connecting
gfreeman-navapbc 644b08e
add tags and name to image
gfreeman-navapbc dbfadcb
remove management sg
gfreeman-navapbc 5547761
add debug flag
gfreeman-navapbc 22c1e47
add verbose logging
gfreeman-navapbc 53b25a7
switch to dnf over yum
gfreeman-navapbc e28f162
remove dnf, just use yum for docker
gfreeman-navapbc 0230a47
remove curl command with error
gfreeman-navapbc File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Is there no way to do this with data sources in the hcl file?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Unfortunately it doesn't seem that way, Terraform includes the datasources for
aws_vpc
andaws_subnet
, but those are mysteriously left out of the packer data sources documentation.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah, another weird quirk of Packer! Thanks for checking.