You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
40 lines
796 B
40 lines
796 B
# Tags
|
|
|
|
variable tags {
|
|
description = "Different tag values which should be assigned to AWS resources created via Terraform)"
|
|
type = "map"
|
|
}
|
|
|
|
# AWS Regions / Zones
|
|
|
|
variable aws_region {
|
|
type = "string"
|
|
description = "AWS region which should be used"
|
|
}
|
|
|
|
variable aws_zones {
|
|
type = "list"
|
|
description = "AWS AZs (Availability zones) where subnets should be created"
|
|
}
|
|
|
|
# Private subnets
|
|
|
|
variable private_subnets {
|
|
description = "Create both private and public subnets"
|
|
type = "string"
|
|
default = "false"
|
|
}
|
|
|
|
# Resource naming
|
|
|
|
variable vpc_name {
|
|
description = "Name of the VPC"
|
|
type = "string"
|
|
}
|
|
|
|
# Network details (Change this only if you know what you are doing or if you think you are lucky)
|
|
|
|
variable vpc_cidr {
|
|
type = "string"
|
|
description = "CIDR of the VPC"
|
|
}
|
|
|