forked from cloudposse/terraform-aws-acm-request-certificate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
variables.tf
46 lines (39 loc) · 1.27 KB
/
variables.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
variable "wait_for_certificate_issued" {
type = bool
default = false
description = "Whether to wait for the certificate to be issued by ACM (the certificate status changed from `Pending Validation` to `Issued`)"
}
variable "domain_name" {
type = string
description = "A domain name for which the certificate should be issued"
}
variable "validation_method" {
type = string
default = "DNS"
description = "Method to use for validation, DNS or EMAIL"
}
variable "process_domain_validation_options" {
type = bool
default = true
description = "Flag to enable/disable processing of the record to add to the DNS zone to complete certificate validation"
}
variable "ttl" {
type = string
default = "300"
description = "The TTL of the record to add to the DNS zone to complete certificate validation"
}
variable "subject_alternative_names" {
type = list(string)
default = []
description = "A list of domains that should be SANs in the issued certificate"
}
variable "zone_id" {
type = string
default = ""
description = "The ID of the desired Route53 Hosted Zone"
}
variable "zone_name" {
type = string
default = ""
description = "The name of the desired Route53 Hosted Zone"
}