mirror of
https://github.com/opentofu/opentofu.git
synced 2025-01-08 23:23:59 -06:00
c6beaa7ce8
Signed-off-by: Valentin Pichard <valentin.pichard@corp.ovh.com>
24 lines
464 B
HCL
24 lines
464 B
HCL
variable "subnet_1_cidr" {
|
|
default = "10.0.1.0/24"
|
|
description = "Your AZ"
|
|
}
|
|
|
|
variable "subnet_2_cidr" {
|
|
default = "10.0.2.0/24"
|
|
description = "Your AZ"
|
|
}
|
|
|
|
variable "az_1" {
|
|
default = "us-east-1b"
|
|
description = "Your Az1, use AWS CLI to find your account specific"
|
|
}
|
|
|
|
variable "az_2" {
|
|
default = "us-east-1c"
|
|
description = "Your Az2, use AWS CLI to find your account specific"
|
|
}
|
|
|
|
variable "vpc_id" {
|
|
description = "Your VPC ID"
|
|
}
|