Skip to content

Commit

Permalink
Fix Security Group Outputs (#24)
Browse files Browse the repository at this point in the history
* fix edge case for sg outputs

* Auto Format

Co-authored-by: cloudpossebot <[email protected]>
  • Loading branch information
milldr and cloudpossebot authored Jun 9, 2022
1 parent ecfb21b commit 96a63c7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@
":preserveSemverRanges"
],
"labels": ["auto-update"],
"dependencyDashboardAutoclose": true,
"enabledManagers": ["terraform"],
"terraform": {
"ignorePaths": ["**/context.tf", "examples/**"]
}
}

6 changes: 3 additions & 3 deletions outputs.tf
Original file line number Diff line number Diff line change
Expand Up @@ -44,16 +44,16 @@ output "webserver_url" {
}

output "security_group_id" {
value = join("", module.mwaa_security_group.*.id)
value = join("", compact(module.mwaa_security_group.*.id))
description = "The ID of the created security group"
}

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

output "security_group_name" {
value = join("", module.mwaa_security_group.*.name)
value = join("", compact(module.mwaa_security_group.*.name))
description = "The name of the created security group"
}

0 comments on commit 96a63c7

Please sign in to comment.