Skip to content

Commit

Permalink
Try again (#4)
Browse files Browse the repository at this point in the history
* if forward_domain contains a period this fails because aws sucks

* dont like the space
  • Loading branch information
cdaniluk authored Mar 20, 2020
1 parent eb6ddaf commit e0e5f00
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion main.tf
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
resource "aws_route53_resolver_rule" "fwd" {
name = var.forward_domain
name = replace(var.forward_domain, ".", "")
domain_name = var.forward_domain
resolver_endpoint_id = var.resolver_endpoint
rule_type = "FORWARD"
Expand Down

0 comments on commit e0e5f00

Please sign in to comment.