-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Create separate resources for ARM64 and x86-64 AMIs and launch permis…
…sions Co-authored-by: Nick <[email protected]>
- Loading branch information
Showing
3 changed files
with
62 additions
and
18 deletions.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,9 @@ | ||
output "launch_permissions" { | ||
value = module.ami_launch_permission | ||
description = "The cisagov/ami-launch-permission-tf-module for each AMI to which launch permission is being granted." | ||
output "launch_permissions_arm64" { | ||
value = module.ami_launch_permission_arm64 | ||
description = "The cisagov/ami-launch-permission-tf-module for each ARM64 AMI to which launch permission is being granted." | ||
} | ||
|
||
output "launch_permissions_x86_64" { | ||
value = module.ami_launch_permission_x86_64 | ||
description = "The cisagov/ami-launch-permission-tf-module for each x86_64 AMI to which launch permission is being granted." | ||
} |
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