Skip to content

Commit 47d4286

Browse files
committed
chore: fix missing paramter
1 parent be40cda commit 47d4286

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

examples/single-account-k8s/cloud-connector.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ resource "helm_release" "cloud_connector" {
8282
}
8383
}
8484
]
85-
scanners = [
85+
scanners = local.deploy_image_scanning ? [
8686
merge(
8787
local.ecr_scanning_with_infra ? {
8888
aws-ecr = {
@@ -103,7 +103,7 @@ resource "helm_release" "cloud_connector" {
103103
aws-ecs-inline = {}
104104
} : {},
105105
)
106-
]
106+
] : []
107107
})
108108
]
109109
depends_on = [module.iam_user]

0 commit comments

Comments
 (0)