Skip to content

Commit

Permalink
fix: sg arn output breaks when providing security groups IDs (#67)
Browse files Browse the repository at this point in the history
* fix: sg arn output

* fix

---------

Co-authored-by: Dmitrij Nikitenko <dmitrij@nikitenko.lv>
  • Loading branch information
pcn and dmitrijn authored Mar 1, 2024
1 parent 82a19ec commit 32b97ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ output "security_group_id" {
}

output "security_group_arn" {
value = join("", module.aws_security_group[*].arn)
value = module.aws_security_group.arn
description = "The ARN of the created security group"
}

Expand Down

0 comments on commit 32b97ec

Please sign in to comment.