Terraform resource: aws acm certificate

From wikieduonline
Revision as of 15:16, 12 January 2023 by Welcome (talk | contribs)
Jump to navigation Jump to search

Example

resource "aws_acm_certificate" "cert" {
 domain_name       = "example.com"
 validation_method = "DNS"
 tags = {
   Environment = "test"
 }
 lifecycle {
   create_before_destroy = true
 }
}

Arguments

  • id - The ARN of the certificate
  • arn - The ARN of the certificate

Related

See also

Advertising: