Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Jan 5, 2024
1 parent 32ce568 commit 6fd4993
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 5 deletions.
6 changes: 2 additions & 4 deletions acmpca/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,7 @@ the ARN if completed. You'll use the ARN for an AWS LB Listener.

## Modules

| Name | Source | Version |
|------|--------|---------|
| <a name="module_cert"></a> [cert](#module\_cert) | git@github.e.it.census.gov:terraform-modules/aws-certificates//acm | n/a |
No modules.

## Resources

Expand All @@ -80,7 +78,7 @@ the ARN if completed. You'll use the ARN for an AWS LB Listener.
| [local_sensitive_file.certificate_cert_chain](https://registry.terraform.io/providers/hashicorp/local/latest/docs/resources/sensitive_file) | resource |
| [local_sensitive_file.certificate_csr](https://registry.terraform.io/providers/hashicorp/local/latest/docs/resources/sensitive_file) | resource |
| [local_sensitive_file.certificate_key](https://registry.terraform.io/providers/hashicorp/local/latest/docs/resources/sensitive_file) | resource |
| [null_source.output_directory](https://registry.terraform.io/providers/hashicorp/null/latest/docs/resources/source) | resource |
| [null_resource.output_directory](https://registry.terraform.io/providers/hashicorp/null/latest/docs/resources/resource) | resource |
| [tls_cert_request.certificate](https://registry.terraform.io/providers/hashicorp/tls/latest/docs/resources/cert_request) | resource |
| [tls_private_key.certificate](https://registry.terraform.io/providers/hashicorp/tls/latest/docs/resources/private_key) | resource |
| [aws_arn.current](https://registry.terraform.io/providers/hashicorp/aws/latest/docs/data-sources/arn) | data source |
Expand Down
2 changes: 1 addition & 1 deletion acmpca/certificate.tf
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ locals {
certificate_tls_crt = base64encode(join("\n", [local.certificate_crt, local.certificate_chain]))
}

resource "null_source" "output_directory" {
resource "null_resource" "output_directory" {
count = var.create_files && local.output_file_directory != null ? 1 : 0
local-exec {
command = "test -d ${local.output_file_directory} || mkdir -p ${local.output_file_directory}"
Expand Down

0 comments on commit 6fd4993

Please sign in to comment.