fix(examples/templates/nomad-docker): ignore `NOMAD_NAMESPACE` and `NOMAD_REGION` when Coder is running in nomad (#11341)

This commit is contained in:
Myne 2023-12-28 15:24:18 +08:00 committed by GitHub
parent e9437e2662
commit 6fcc49f030
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 6 additions and 0 deletions

View File

@ -27,6 +27,12 @@ provider "coder" {}
provider "nomad" {
address = var.nomad_provider_address
http_auth = var.nomad_provider_http_auth == "" ? null : var.nomad_provider_http_auth
# Fix reading the NOMAD_NAMESPACE and the NOMAD_REGION env var from the coder's allocation.
ignore_env_vars = {
"NOMAD_NAMESPACE" = true
"NOMAD_REGION" = true
}
}
data "coder_parameter" "cpu" {