Skip to content

Commit

Permalink
* 1.2.4 -- 2025-08-01
Browse files Browse the repository at this point in the history
  - acmpca: add creation of certs/.gitignore containing *.key
  • Loading branch information
badra001 committed Aug 1, 2025
1 parent 5cb1d26 commit fef6071
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -47,3 +47,6 @@
* 1.2.3 -- 2025-07-29
- add acmpca-iam-rolesanywhere example

* 1.2.4 -- 2025-08-01
- acmpca: add creation of certs/.gitignore containing *.key

3 changes: 3 additions & 0 deletions acmpca/certificate.tf
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,9 @@ resource "null_resource" "output_directory" {
provisioner "local-exec" {
command = "test -d ${local.output_file_directory} || mkdir -p ${local.output_file_directory}"
}
provisioner "local-exec" {
command = "echo '*.key' >> ${local.output_file_directory}/.gitignore"
}
}

locals {
Expand Down
2 changes: 1 addition & 1 deletion common/version.tf
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
locals {
_module_version = "1.2.3"
_module_version = "1.2.4"
}

0 comments on commit fef6071

Please sign in to comment.