Skip to content

Commit

Permalink
e2e: Update TLS cert domain to match e2e region config parameter.
Browse files Browse the repository at this point in the history
  • Loading branch information
jrasell committed Dec 17, 2024
1 parent e48bfec commit 7ffe807
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions e2e/terraform/provision-nomad/tls.tf
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,10 @@ resource "tls_private_key" "nomad" {
resource "tls_cert_request" "nomad" {
private_key_pem = tls_private_key.nomad.private_key_pem
ip_addresses = [var.instance.public_ip, var.instance.private_ip, "127.0.0.1"]
dns_names = ["${var.role}.global.nomad"]
dns_names = ["${var.role}.e2e.nomad"]

subject {
common_name = "${var.role}.global.nomad"
common_name = "${var.role}.e2e.nomad"
}
}

Expand Down

0 comments on commit 7ffe807

Please sign in to comment.