Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Mar 24, 2023
1 parent 2244ccf commit 498122c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions common/entry_ptr.tf
Original file line number Diff line number Diff line change
Expand Up @@ -11,13 +11,13 @@ locals {
data "aws_route53_zone" "ipv4_ptr" {
for_each = local.default_enable_ptr && contains(["a", "ptr", "host"], local.record_type) ? toset(local.ipv4_ptr_zones) : toset([])
name = each.key
private_zone = local.private
private_zone = local.private_zone
}

data "aws_route53_zone" "ipv6_ptr" {
for_each = local.default_enable_ptr && contains(["aaaa", "ptr", "host"], local.record_type) ? toset(local.ipv6_ptr_zones) : toset([])
name = each.key
private_zone = local.private
private_zone = local.private_zone
}

resource "aws_route53_record" "entry_ipv4_ptr" {
Expand Down

0 comments on commit 498122c

Please sign in to comment.