mirror of
https://github.com/edgelesssys/constellation.git
synced 2025-05-23 16:31:10 -04:00
parent
a6d201b761
commit
130c61ffcf
10 changed files with 612 additions and 0 deletions
19
terraform/aws/modules/load_balancer/variables.tf
Normal file
19
terraform/aws/modules/load_balancer/variables.tf
Normal file
|
@ -0,0 +1,19 @@
|
|||
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."
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue