mirror of
https://github.com/edgelesssys/constellation.git
synced 2024-10-01 01:36:09 -04:00
130c61ffcf
* initial AWS terraform
20 lines
336 B
HCL
20 lines
336 B
HCL
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."
|
|
}
|