Skip to content

Commit

Permalink
fix: remove default variable
Browse files Browse the repository at this point in the history
  • Loading branch information
d4kverma committed Oct 4, 2023
1 parent 3392557 commit 6d7d59b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions _example/generate-certificate-dns/example.tf
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,5 @@ module "acm" {
environment = "test"

domain_name = "clouddrove.com"
subject_alternative_names = ["www.clouddrove.com"]
validation_method = "DNS"
enable_dns_validation = false
subject_alternative_names = ["*.${var.domain}", "www.${var.domain}"]
}
2 changes: 1 addition & 1 deletion variables.tf
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ variable "subject_alternative_names" {

variable "validation_method" {
type = string
default = ""
default = "DNS"
description = "Which method to use for validation, DNS or EMAIL."
}

Expand Down

0 comments on commit 6d7d59b

Please sign in to comment.