Skip to content

Commit

Permalink
backport of commit ddff68c (#21227)
Browse files Browse the repository at this point in the history
Co-authored-by: Ryan Cragun <me@ryan.ec>
  • Loading branch information
1 parent 41ad4dc commit 475aa17
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
11 changes: 6 additions & 5 deletions enos/enos-modules.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -9,11 +9,12 @@ module "az_finder" {
module "backend_consul" {
source = "app.terraform.io/hashicorp-qti/aws-consul/enos"

project_name = var.project_name
environment = "ci"
common_tags = var.tags
ssh_aws_keypair = var.aws_ssh_keypair_name
consul_license = var.backend_license_path == null ? null : file(abspath(var.backend_license_path))
project_name = var.project_name
environment = "ci"
common_tags = var.tags
ssh_aws_keypair = var.aws_ssh_keypair_name
consul_license = var.backend_license_path == null ? null : file(abspath(var.backend_license_path))
consul_log_level = var.backend_log_level
}

module "backend_raft" {
Expand Down
8 changes: 7 additions & 1 deletion enos/enos-variables.hcl
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,12 @@ variable "backend_license_path" {
default = null
}

variable "backend_log_level" {
description = "The server log level for the backend. Supported values include 'trace', 'debug', 'info', 'warn', 'error'"
type = string
default = "trace"
}

variable "project_name" {
description = "The description of the project"
type = string
Expand Down Expand Up @@ -142,7 +148,7 @@ variable "vault_local_build_tags" {
variable "vault_log_level" {
description = "The server log level for Vault logs. Supported values (in order of detail) are trace, debug, info, warn, and err."
type = string
default = "info"
default = "trace"
}

variable "vault_build_date" {
Expand Down

0 comments on commit 475aa17

Please sign in to comment.