Difference between revisions of "Terraform resource: aws acm certificate"
Jump to navigation
Jump to search
↑ https://registry.terraform.io/providers/hashicorp/aws/latest/docs/resources/acm_certificate
Line 30: | Line 30: | ||
} | } | ||
} | } | ||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
− | |||
== Related == | == Related == |
Revision as of 15:57, 23 June 2023
aws_acm_certificate
[1] resource
Examples
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
aws_lb_listener
certificate_arn
AWS::CertificateManager
- Terraform ACM
- AWS ALB
- aws_acm_certificate_validation
- CertificateNotFound
See also
- Terraform ACM:
aws_acm_certificate, aws_acm_certificate_validation
, ACM module - Amazon Certificate Manager (ACM),
aws acm
, Terraform resource: aws acm certificate,UnsupportedCertificate
Advertising: