You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
## Most commonly, this resource is used together with aws_route53_record and aws_acm_certificate to request a DNS validated certificate, deploy the required validation records and wait for validation to complete.
@@ -84,13 +93,13 @@ data "aws_route53_zone" "default" {
84
93
## A Route 53 record contains authoritative DNS information for a specified DNS name. DNS records are most commonly used to map a name to an IP Address..
Copy file name to clipboardExpand all lines: variables.tf
+11Lines changed: 11 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -128,4 +128,15 @@ variable "private_zone" {
128
128
description="Used with name field to get a private Hosted Zone."
129
129
}
130
130
131
+
variable"key_algorithm" {
132
+
type=string
133
+
default=null
134
+
description="used to generate the public/private key pair for the certificate. Valid values: RSA_2048, RSA_4096, EC_prime256v1, EC_secp384r1, EC_secp521r1."
135
+
}
136
+
137
+
variable"transparency_logging_enabled" {
138
+
type=bool
139
+
default=false
140
+
description="Whether to enable certificate transparency logging. Defaults to true. Set to false to disable."
0 commit comments