Turn off undo logs for enos auto-upgrade scenario pre-v1.13 (#18526)

This commit is contained in:
Mike Palmiotto 2022-12-22 12:37:05 -05:00 committed by GitHub
parent 6b3995dc3c
commit 5932b34dad
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -40,7 +40,7 @@ scenario "autopilot" {
arm64 = "t4g.small"
}
enable_undo_logs = matrix.undo_logs_status == "1" && semverconstraint(var.vault_product_version, ">=1.12.0-0") ? true : false
enable_undo_logs = matrix.undo_logs_status == "1" && semverconstraint(var.vault_product_version, ">=1.13.0-0") ? true : false
vault_instance_type = coalesce(var.vault_instance_type, local.vault_instance_types[matrix.arch])
vault_license_path = abspath(var.vault_license_path != null ? var.vault_license_path : joinpath(path.root, "./support/vault.hclic"))
@ -240,7 +240,7 @@ scenario "autopilot" {
}
step "verify_undo_logs_status" {
skip_step = semverconstraint(var.vault_product_version, "<1.12.0-0")
skip_step = semverconstraint(var.vault_product_version, "<1.13.0-0")
module = module.vault_verify_undo_logs
depends_on = [
step.upgrade_vault_cluster_with_autopilot,