9da2fc4b8b
Rather than assuming a short sleep will work, we instead wait until netcat is listening of the socket. We've also configured the netcat listener to persist after the first connection, which allows Vault and us to check the connection without the process closing. As we implemented this we also ran into AWS issues in us-east-1 and us-west-2, so we've changed our deploy regions until those issues are resolved. Signed-off-by: Ryan Cragun <me@ryan.ec>
43 lines
961 B
HCL
43 lines
961 B
HCL
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
|
|
terraform {
|
|
required_providers {
|
|
enos = {
|
|
source = "app.terraform.io/hashicorp-qti/enos"
|
|
}
|
|
}
|
|
}
|
|
|
|
locals {
|
|
instances = toset([for idx in range(var.vault_instance_count) : tostring(idx)])
|
|
}
|
|
|
|
resource "enos_remote_exec" "replication_status" {
|
|
for_each = local.instances
|
|
|
|
inline = ["vault read -format=json sys/replication/status"]
|
|
|
|
transport = {
|
|
kubernetes = {
|
|
kubeconfig_base64 = var.kubeconfig_base64
|
|
context_name = var.context_name
|
|
pod = var.vault_pods[each.key].name
|
|
namespace = var.vault_pods[each.key].namespace
|
|
}
|
|
}
|
|
}
|
|
|
|
resource "enos_local_exec" "verify_replication_status" {
|
|
|
|
for_each = enos_remote_exec.replication_status
|
|
|
|
environment = {
|
|
STATUS = each.value.stdout
|
|
VAULT_EDITION = var.vault_edition
|
|
}
|
|
|
|
content = abspath("${path.module}/scripts/smoke-verify-replication.sh")
|
|
}
|