diff --git a/CHANGELOG.md b/CHANGELOG.md index 653a8a4..923f6b8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -88,3 +88,6 @@ tag: 2.0.1 - ou=ACCOUNT_ID - gov.census.csvd:tf_module_version - gov.census.csvd:account_alias + +* 2.3.1 -- 2023-10-06 + - add -p to mkdir so as not to cause a failure if multiple roles created at the same time diff --git a/main.tf b/main.tf index 641923e..c1b3de2 100644 --- a/main.tf +++ b/main.tf @@ -203,7 +203,7 @@ resource "null_resource" "role_ldif" { } provisioner "local-exec" { - command = "test -d ${path.root}/setup || mkdir ${path.root}/setup" + command = "test -d ${path.root}/setup || mkdir -p ${path.root}/setup" } provisioner "local-exec" { command = "echo '${data.template_file.role[0].rendered}' > ${path.root}/setup/${local.role_name}.ldif" diff --git a/version.tf b/version.tf index c9541a3..2f6932c 100644 --- a/version.tf +++ b/version.tf @@ -1,4 +1,4 @@ locals { # _module_version = "1.4.0" - _module_version = "2.3.0" + _module_version = "2.3.1" }