| # Copyright (c) HashiCorp, Inc. | |
| # SPDX-License-Identifier: BUSL-1.1 | |
| variable "vault_addr" { | |
| type = string | |
| description = "The vault cluster address" | |
| default = "http://localhost:8200" | |
| } | |
| variable "vault_instance_count" { | |
| type = number | |
| description = "How many vault instances are in the cluster" | |
| } | |
| variable "vault_instances" { | |
| type = map(object({ | |
| private_ip = string | |
| public_ip = string | |
| })) | |
| description = "The vault cluster instances that were created" | |
| } |