Skip to content

Commit 3e93924

Browse files
committed
resolve issue in function
1 parent bd95b0d commit 3e93924

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

security/security-design/shared-assets/fn-datasafe-dbaudit-to-oci-logging/files/terraform/function_prep.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ resource "null_resource" "functionapp_push2ocir" {
2424

2525
provisioner "local-exec" {
2626
#command = "fn build --verbose"
27-
command = "docker buildx build --push --platform linux/arm64/v8,linux/amd64"
27+
command = "docker buildx build --push --platform linux/arm64/v8,linux/amd64 ${path.module}/${local.fn_working_dir}"
2828
working_dir ="${path.module}/${local.fn_working_dir}"
2929
}
3030

@@ -34,7 +34,7 @@ resource "null_resource" "functionapp_push2ocir" {
3434
}
3535

3636
provisioner "local-exec" {
37-
command = "docker manifestpush ${local.fn_image}"
37+
command = "docker manifest push ${local.fn_image}"
3838
working_dir = "${path.module}/${local.fn_working_dir}"
3939
}
4040

0 commit comments

Comments
 (0)