From 4ac70bdcc582dc7e67007e6c540964791f52c04a Mon Sep 17 00:00:00 2001 From: Pim Kunis Date: Tue, 25 Apr 2023 23:09:10 +0200 Subject: [PATCH] try to fix permission issue --- main.tf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.tf b/main.tf index 9250802..97c3977 100644 --- a/main.tf +++ b/main.tf @@ -91,7 +91,7 @@ resource "null_resource" "data_share" { provisioner "remote-exec" { inline = [ - "${var.add_data_share} && mkdir -p --mode=og=rw /data/${local.domain_name}" + "${var.add_data_share} && mkdir -p --mode=og=rwx /data/${local.domain_name}" ] } }