mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-12-25 07:29:38 -05:00
20 lines
336 B
Terraform
20 lines
336 B
Terraform
|
variable "name" {
|
||
|
type = string
|
||
|
description = "Name of the load balancer."
|
||
|
}
|
||
|
|
||
|
variable "port" {
|
||
|
type = string
|
||
|
description = "Port of the load balancer."
|
||
|
}
|
||
|
|
||
|
variable "vpc" {
|
||
|
type = string
|
||
|
description = "ID of the VPC."
|
||
|
}
|
||
|
|
||
|
variable "subnet" {
|
||
|
type = string
|
||
|
description = "ID of the subnets."
|
||
|
}
|