Following aws vpc course from https://github.com/Lowess
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.
26 lines
418 B
26 lines
418 B
variable "aws_region" {
|
|
type = string
|
|
default = "us-east-1"
|
|
}
|
|
|
|
variable "vpc_name" {
|
|
type = string
|
|
default = "mycould"
|
|
description = "VPC name"
|
|
}
|
|
|
|
variable "vpc_cidr" {
|
|
type = string
|
|
default = "172.22.0.0/16"
|
|
description = "VPC Cidr block"
|
|
}
|
|
|
|
variable "azs" {
|
|
type = map(any)
|
|
default = {
|
|
"a" = 0,
|
|
"b" = 1,
|
|
"c" = 2
|
|
}
|
|
description = "Availability zones to create within subnet"
|
|
}
|
|
|