Skip to content

Commit

Permalink
add debug temporarily
Browse files Browse the repository at this point in the history
  • Loading branch information
robertsweetman committed Oct 9, 2023
1 parent 9d05ed4 commit 2ebc3a0
Show file tree
Hide file tree
Showing 3 changed files with 19 additions and 1 deletion.
2 changes: 1 addition & 1 deletion commonimages/base/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -23,4 +23,4 @@ module "imagebuilder" {
systems_manager_agent = var.systems_manager_agent
branch = var.BRANCH_NAME
gh_actor = var.GH_ACTOR_NAME
}
}
9 changes: 9 additions & 0 deletions commonimages/base/output.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
output "module_image_builder_security_group" {
value = module.imagebuilder.image_builder_security_group
description = "Output the entire object to inspect its attributes"
}

output "module_non_live_private_subnet_ids_0" {
value = module.imagebuilder.non_live_private_subnet_ids[0]
description = "Output the entire object to inspect its attributes"
}
9 changes: 9 additions & 0 deletions modules/imagebuilder/outputs.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
output "image_builder_security_group_id" {
value = [local.core_shared_services.repo_tfstate.image_builder_security_group_id]
description = "Output the entire object to inspect its attributes"
}

output "non_live_private_subnet_ids" {
value = local.core_shared_services.repo_tfstate.non_live_private_subnet_ids[0]
description = "Output the entire object to inspect its attributes"
}

0 comments on commit 2ebc3a0

Please sign in to comment.