1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28
|
provider "aws" {
version = "~> 1.15"
}
variable "prefix" {
default = "go-discover"
description = "prefix of the VPC ?"
}
variable "private_key_path" {
default = "tf_rsa"
description = "path to the private key used for provisioning"
}
variable "public_key_path" {
default = "tf_rsa.pub"
description = "path to the public key used for provisioning"
}
variable "address_space" {
default = "10.0.0.0/16"
description = "address space of the VPC"
}
variable "subnet_cidr" {
default = "10.0.1.0/24"
description = "subnet of the VPC"
}
|