Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed May 9, 2022
1 parent 2592908 commit 32671a7
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -24,12 +24,12 @@ output "instance_profile_name" {
value = var.create && var.enable_instance_profile ? aws_iam_instance_profile.role[0].name : ""
}

output "instance_profile_arn" {
description = "Created instance profile ARN, if enabled"
value = var.enable_instance_profile ? aws_iam_instance_profile.role[0].arn : ""
}

output "instance_profile_name" {
description = "Created instance profile name, if enabled"
value = var.enable_instance_profile ? aws_iam_instance_profile.role[0].name : ""
}
# output "instance_profile_arn" {
# description = "Created instance profile ARN, if enabled"
# value = var.enable_instance_profile ? aws_iam_instance_profile.role[0].arn : ""
# }
#
# output "instance_profile_name" {
# description = "Created instance profile name, if enabled"
# value = var.enable_instance_profile ? aws_iam_instance_profile.role[0].name : ""
# }

0 comments on commit 32671a7

Please sign in to comment.