Skip to content

Commit 1067222

Browse files
authored
fix: certificate_transparency_logging_preference to default to true (#51)
1 parent bd4de5a commit 1067222

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ module "acm" {
8181

8282
| Name | Description | Type | Default | Required |
8383
|------|-------------|------|---------|:--------:|
84-
| certificate\_transparency\_logging\_preference | Specifies whether certificate details should be added to a certificate transparency log | `bool` | `false` | no |
84+
| certificate\_transparency\_logging\_preference | Specifies whether certificate details should be added to a certificate transparency log | `bool` | `true` | no |
8585
| create\_certificate | Whether to create ACM certificate | `bool` | `true` | no |
8686
| domain\_name | A domain name for which the certificate should be issued | `string` | `""` | no |
8787
| subject\_alternative\_names | A list of domains that should be SANs in the issued certificate | `list(string)` | `[]` | no |

variables.tf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ variable "wait_for_validation" {
2525
variable "certificate_transparency_logging_preference" {
2626
description = "Specifies whether certificate details should be added to a certificate transparency log"
2727
type = bool
28-
default = false
28+
default = true
2929
}
3030

3131
variable "domain_name" {

0 commit comments

Comments
 (0)