github.com/tetrafolium/tflint@v0.8.0/tflint/test-fixtures/v0.11.0_module/.terraform/modules/f0eaa6f925a0b190069ec6c68d85de8a/variables.tf (about)

     1  # ---------------------------------------------------------------------------------------------------------------------
     2  # REQUIRED PARAMETERS
     3  # You must provide a value for each of these parameters.
     4  # ---------------------------------------------------------------------------------------------------------------------
     5  
     6  variable "security_group_id" {
     7    description = "The ID of the security group to which we should add the Consul security group rules"
     8  }
     9  
    10  variable "allowed_inbound_cidr_blocks" {
    11    description = "A list of CIDR-formatted IP address ranges from which the EC2 Instances will allow connections to Consul"
    12    type        = "list"
    13  }
    14  
    15  # ---------------------------------------------------------------------------------------------------------------------
    16  # OPTIONAL PARAMETERS
    17  # These parameters have reasonable defaults.
    18  # ---------------------------------------------------------------------------------------------------------------------
    19  
    20  variable "allowed_inbound_security_group_ids" {
    21    description = "A list of security group IDs that will be allowed to connect to Consul"
    22    type        = "list"
    23    default     = []
    24  }
    25  
    26  variable "server_rpc_port" {
    27    description = "The port used by servers to handle incoming requests from other agents."
    28    default     = 8300
    29  }
    30  
    31  variable "cli_rpc_port" {
    32    description = "The port used by all agents to handle RPC from the CLI."
    33    default     = 8400
    34  }
    35  
    36  variable "serf_lan_port" {
    37    description = "The port used to handle gossip in the LAN. Required by all agents."
    38    default     = 8301
    39  }
    40  
    41  variable "serf_wan_port" {
    42    description = "The port used by servers to gossip over the WAN to other servers."
    43    default     = 8302
    44  }
    45  
    46  variable "http_api_port" {
    47    description = "The port used by clients to talk to the HTTP API"
    48    default     = 8500
    49  }
    50  
    51  variable "dns_port" {
    52    description = "The port used to resolve DNS queries."
    53    default     = 8600
    54  }