Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[1.15.0] Configuration details tile returns TLS Disabled, when it's enabled #23371

Closed
z0rc opened this issue Sep 28, 2023 · 3 comments · Fixed by #23726
Closed

[1.15.0] Configuration details tile returns TLS Disabled, when it's enabled #23371

z0rc opened this issue Sep 28, 2023 · 3 comments · Fixed by #23726
Labels

Comments

@z0rc
Copy link

z0rc commented Sep 28, 2023

Describe the bug
Configuration tile in UI shows TLS Disabled, for instance where TLS wasn't disabled.
Screenshot 2023-09-28 at 16 16 05

To Reproduce
Steps to reproduce the behavior:

  1. Run vault in kubernetes using official docker image. There is no config file, configuration is supplied via env var VAULT_LOCAL_CONFIG.
  2. Open UI, see "TLS Disabled".

Expected behavior
TLS should be Enabled.

Environment:

  • Vault Server Version (retrieve with vault status): 1.15.0
  • Vault CLI Version (retrieve with vault version): Irrelevant
  • Server Operating System/Architecture: Bottlerocket 1.15.0, arm64.

Vault server configuration file(s):

api_addr     = "https://${vault_domain}"
cluster_name = "${vault_cluster_name}"
ui           = true

log_level  = "info"
log_format = "json"

listener "tcp" {
  address                  = "[::]:${vault_port}"
  cluster_address          = "[::]:${vault_port + 1}"
  tls_cert_file            = "/etc/vault/tls/vault.crt"
  tls_key_file             = "/etc/vault/tls/vault.key"
  tls_disable_client_certs = "true"
  proxy_protocol_behavior  = "use_always"
}

seal "awskms" {
  region     = "${aws_region}"
  kms_key_id = "${kms_key_id}"
}

storage "dynamodb" {
  ha_enabled = "true"
  region     = "${aws_region}"
  table      = "${vault_dynamodb_table}"
}

Additional context
None.

@hghaf099 hghaf099 added the ui label Sep 28, 2023
@karabanov
Copy link

I confirm - I have the same behavior

@bmcdonald05
Copy link

I am seeing the same behavior on on Vault 1.15.0+ent

config snippet:

listener "tcp" {
 address = "0.0.0.0:8200"

 ### Enable TLS ###
 tls_cert_file = "./tls/cert.pem"
 tls_key_file = "./tls/key.pem"
 tls_client_ca_file = "./tls/ca.pem"
 tls_disable_client_certs = false
}
Vault-ui-bug

@lals1
Copy link

lals1 commented Oct 18, 2023

Seeing the same issue, Does anyone know the reason?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
Projects
None yet
Development

Successfully merging a pull request may close this issue.

6 participants