Skip to content

Commit 8d0a211

Browse files
authored
Fix: Add BridgeCrew Suppressions (#39)
* Add bridgecrew suppressions.
1 parent a20bc34 commit 8d0a211

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

main.tf

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,8 @@ data "aws_route53_zone" "default" {
66
}
77

88
resource "aws_route53_record" "default" {
9+
#bridgecrew:skip=BC_AWS_NETWORKING_60:All of the aliases are configurable via var.aliases and it is the user's responsibility to ensure that all of the resources are in the same account.
10+
#bridgecrew:skip=BC_AWS_GENERAL_95:All of the aliases are configurable via var.aliases and it is the user's responsibility to ensure that all of the aliases point to resources and not just IPv4 addresses.
911
count = module.this.enabled ? length(compact(var.aliases)) : 0
1012
zone_id = try(data.aws_route53_zone.default[0].zone_id, "")
1113
name = compact(var.aliases)[count.index]

0 commit comments

Comments
 (0)