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 d593ad3 commit 54a6d7e
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 2 deletions.
1 change: 1 addition & 0 deletions a/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -95,3 +95,4 @@ The record looks like:
| <a name="output_availability_zone_suffixes"></a> [availability\_zone\_suffixes](#output\_availability\_zone\_suffixes) | VPC Availability zone suffix list |
| <a name="output_heritage_name"></a> [heritage\_name](#output\_heritage\_name) | DNS Name created for the heritage record, if enabled |
| <a name="output_name"></a> [name](#output\_name) | DNS Name created (same as what was provided) |
| <a name="output_timestamp"></a> [timestamp](#output\_timestamp) | Record creation Unix timestamp (from heritage records) |
1 change: 0 additions & 1 deletion a/entry.tf

This file was deleted.

8 changes: 8 additions & 0 deletions a/entry.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
resource "aws_route53_record" "entry" {
count = length(local.ipv4_hosts) > 0 ? 1 : 0
zone_id = data.aws_route53_zone.zone.zone_id
name = var.name
type = local.rr_type
ttl = var.ttl
records = local.values
}
1 change: 1 addition & 0 deletions aaaa/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,3 +87,4 @@ No modules.
| <a name="output_availability_zone_suffixes"></a> [availability\_zone\_suffixes](#output\_availability\_zone\_suffixes) | VPC Availability zone suffix list |
| <a name="output_heritage_name"></a> [heritage\_name](#output\_heritage\_name) | DNS Name created for the heritage record, if enabled |
| <a name="output_name"></a> [name](#output\_name) | DNS Name created (same as what was provided) |
| <a name="output_timestamp"></a> [timestamp](#output\_timestamp) | Record creation Unix timestamp (from heritage records) |
1 change: 0 additions & 1 deletion aaaa/entry.tf

This file was deleted.

8 changes: 8 additions & 0 deletions aaaa/entry.tf
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
resource "aws_route53_record" "entry" {
count = length(local.ipv6_hosts) > 0 ? 1 : 0
zone_id = data.aws_route53_zone.zone.zone_id
name = var.name
type = local.rr_type
ttl = var.ttl
records = local.values
}

0 comments on commit 54a6d7e

Please sign in to comment.