Difference between revisions of "Terraform resource: aws acm certificate"

From wikieduonline
Jump to navigation Jump to search
 
(One intermediate revision by the same user not shown)
Line 42: Line 42:
 
* [[Terraform ACM]]
 
* [[Terraform ACM]]
 
* [[AWS ALB]]
 
* [[AWS ALB]]
* [[aws_acm_certificate_validation]]
+
* <code>[[aws_acm_certificate_validation]]</code>
 
* [[CertificateNotFound]]
 
* [[CertificateNotFound]]
 +
* <code>[[aws_route53_record]]</code>
  
 
== See also ==
 
== See also ==

Latest revision as of 12:12, 12 August 2024

aws_acm_certificate [1] resource

Arguments[edit]

Examples[edit]

resource "aws_acm_certificate" "cert" {
 domain_name       = "example.com"
 validation_method = "DNS"

 tags = {
   Environment = "test"
 }

 lifecycle {
   create_before_destroy = true
 }
}
resource "aws_acm_certificate" "cert" {
 domain_name       = "example.com"
 subject_alternative_names = ["*.example.com"]
 validation_method = "DNS"

 tags = {
   Name = "your cert name"
   Environment = var.env
 }

 lifecycle {
   create_before_destroy = true
 }
}

Related[edit]

See also[edit]

  • https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/acm_certificate
  • Advertising: