Skip to content

Commit 09a9ac4

Browse files
author
David Raphael
authored
Fixed syntax error in newly added options block for certificate trans… (#50)
1 parent a34decf commit 09a9ac4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

main.tf

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ resource "aws_acm_certificate" "this" {
1212
domain_name = var.domain_name
1313
subject_alternative_names = var.subject_alternative_names
1414
validation_method = var.validation_method
15-
options = {
15+
16+
options {
1617
certificate_transparency_logging_preference = var.certificate_transparency_logging_preference ? "ENABLED" : "DISABLED"
1718
}
1819

19-
2020
tags = var.tags
2121

2222
lifecycle {

0 commit comments

Comments
 (0)