Wildcard for sample project

This commit is contained in:
shockrah 2023-01-09 17:03:40 -08:00
parent bc096af870
commit f48eb9610b

View File

@ -1,8 +1,12 @@
# Here is the TLS cert that we create for the alpha cluster
resource "aws_acm_certificate" "sample" {
domain_name = "sample.project-athens.xyz"
domain_name = "*.project-athens.xyz"
validation_method = "DNS"
lifecycle {
create_before_destroy = true
}
}
resource "aws_acm_certificate_validation" "sample" {