-
-
Notifications
You must be signed in to change notification settings - Fork 234
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Cannot create acm with wildcard domain_name
#62
Comments
I am running into this issue as well when using a wild card: module "acm_management" {
source = "terraform-aws-modules/acm/aws"
version = "2.11.0"
domain_name = "*.example.com,"
zone_id = aws_route53_zone.example_com.zone_id
} However, it does seem to work if you add the module "acm_management" {
source = "terraform-aws-modules/acm/aws"
version = "2.11.0"
domain_name = "*.example.com,"
zone_id = aws_route53_zone.example_com.zone_id
subject_alternative_names = [
"something.example.com"
]
}
|
Looks like someone has a pr open to fix the issue here #57 |
I'm going to lock this issue because it has been closed for 30 days ⏳. This helps our maintainers find and focus on the active issues. If you have found a problem that seems similar to this, please open a new issue and complete the issue template so we can capture all the details necessary to investigate further. |
When using the module like this:
This module fails with:
This is caused because the
domain_name
is not cleaned when calculatingdistinct_domain_names
https://github.com/terraform-aws-modules/terraform-aws-acm/blob/master/main.tf#L3
This is something that is supported by ACM
The text was updated successfully, but these errors were encountered: