github.hscsec.cn/hashicorp/consul@v1.4.5/terraform/openstack/variables.tf (about)

     1  variable "username" {}
     2  variable "password" {}
     3  variable "tenant_name" {}
     4  variable "auth_url" {}
     5  variable "public_key" {}
     6  
     7  variable "user_login" {
     8    default = "stack"
     9  }
    10  
    11  variable "key_file_path" {}
    12  
    13  variable "nb_of_nodes" {
    14    default = "4"
    15  }
    16  
    17  variable "pub_net_id" {
    18    default = {
    19      tr2   = "PublicNetwork-01"
    20      tr2-1 = ""
    21    }
    22  }
    23  
    24  variable "region" {
    25    default     = "tr2"
    26    description = "The region of openstack, for image/flavor/network lookups."
    27  }
    28  
    29  variable "image" {
    30    default = {
    31      tr2   = "eee08821-c95a-448f-9292-73908c794661"
    32      tr2-1 = ""
    33    }
    34  }
    35  
    36  variable "flavor" {
    37    default = {
    38      tr2   = "100"
    39      tr2-1 = ""
    40    }
    41  }
    42  
    43  variable "servers" {
    44    default     = "3"
    45    description = "The number of Consul servers to launch."
    46  }