Skip to content

Commit

Permalink
update
Browse files Browse the repository at this point in the history
  • Loading branch information
badra001 committed Mar 24, 2023
1 parent b2fdbd4 commit 17fee4c
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cname/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module "lakefront_cname" {
source = "git@github.e.it.census.gov:terraform-modules/aws-dns//cname"
name = format("%v.%v", local.app_shortname, var.vpc_domain_name)
values = format("%v.execute-api.%v.amazonaws.com", data.aws_api_gateway_rest_api.lakefront.id, local.region)
values = format("%v.execute-api.%v.amazonaws.com", data.aws_api_gateway_rest_api.lakefront.id, local.region)
}
```

Expand Down
2 changes: 1 addition & 1 deletion cname/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
* source = "git@github.e.it.census.gov:terraform-modules/aws-dns//cname"
*
* name = format("%v.%v", local.app_shortname, var.vpc_domain_name)
* values = format("%v.execute-api.%v.amazonaws.com", data.aws_api_gateway_rest_api.lakefront.id, local.region)
* values = format("%v.execute-api.%v.amazonaws.com", data.aws_api_gateway_rest_api.lakefront.id, local.region)
* }
* ```
*
Expand Down
2 changes: 1 addition & 1 deletion cname/output.tf
Original file line number Diff line number Diff line change
Expand Up @@ -5,5 +5,5 @@ output "name" {

output "heritage_name" {
description = "DNS Name created for the heritage record, if enabled"
value = one(aws_route53_record.entry_heritage[0].name, null)
value = try(aws_route53_record.entry_heritage[0].name, null)
}

0 comments on commit 17fee4c

Please sign in to comment.