Skip to content

Commit

Permalink
FIX: Wildcard domain cannot be given due to AWS tag rule violation (#41)
Browse files Browse the repository at this point in the history
  • Loading branch information
Moondancer83 authored Oct 2, 2020
1 parent 6d5cded commit 8bc88e7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion site-main/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ locals {
tags = merge(
var.tags,
{
"domain" = var.domain
"domain" = replace(var.domain, "*", "--wildcard--")
},
)
}
Expand Down

0 comments on commit 8bc88e7

Please sign in to comment.