Skip to content

Commit

Permalink
minor dns fix to jenkins record creation
Browse files Browse the repository at this point in the history
  • Loading branch information
henrykie committed Jun 23, 2024
1 parent 010a93f commit afcd515
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion samples/simple-build-pipeline/dns.tf
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ data "aws_route53_zone" "public_zone" {

resource "aws_route53_record" "jenkins" {
zone_id = data.aws_route53_zone.public_zone.id
name = data.aws_route53_zone.public_zone.name
name = "jenkins.${data.aws_route53_zone.public_zone.name}"
type = "A"
alias {
name = module.jenkins.jenkins_alb_dns_name
Expand Down

0 comments on commit afcd515

Please sign in to comment.