Skip to content

Commit a0983c2

Browse files
committed
creating output folder if not exists
1 parent 9650fed commit a0983c2

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

main.tf

+1-2
Original file line numberDiff line numberDiff line change
@@ -172,8 +172,7 @@ resource "null_resource" "openvpn_download_configurations" {
172172

173173
# Copy .ovpn config for user from server to var.output_dir
174174
provisioner "local-exec" {
175-
working_dir = var.output_dir
176-
command = "${abspath(path.module)}/scripts/refetch_user.sh"
175+
command = "mkdir -p ${var.output_dir} && ${abspath(path.module)}/scripts/refetch_user.sh"
177176
environment = {
178177
REFETCH_USER_OVPN = local.refetch_user_ovpn
179178
PRIVATE_KEY_FILE = local.private_key_file

0 commit comments

Comments
 (0)