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>
12 lines
374 B
HCL
12 lines
374 B
HCL
# Copyright (c) HashiCorp, Inc.
|
|
# SPDX-License-Identifier: BUSL-1.1
|
|
|
|
variable "repository" {
|
|
description = "The GitHub repository, either vault or vault-enterprise"
|
|
type = string
|
|
validation {
|
|
condition = contains(["vault", "vault-enterprise"], var.repository)
|
|
error_message = "Invalid repository, only vault or vault-enterprise are supported"
|
|
}
|
|
}
|