1variable "vpc_name" {
2  description = "Name of the VPC"
3}
4
5variable "ami_owners" {
6  type        = list(string)
7  description = "The account owner number which the desired AMI is in"
8}
9
10variable "role_arn" {
11  type        = string
12  description = "Role ARN for assume role"
13}
14
15variable "consul_download_url" {
16  type        = string
17  description = "URL to download the Consul binary from"
18  default     = ""
19}