12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- variable "cidr" {
- type = string
- default = "10.0.0.0/16"
- }
- variable "vpc_name" {
- type = string
- default = "web_vpc"
- }
- variable "subnet1_cidr" {
- type = string
- default = "10.0.1.0/24"
- }
- variable "subnet2_cidr" {
- type = string
- default = "10.0.2.0/24"
- }
- variable "subnet3_cidr" {
- type = string
- default = "10.0.2.0/24"
- }
- variable "subnet4_cidr" {
- type = string
- default = "10.0.2.0/24"
- }
- variable "ami" {
- type = string
- }
- variable "instance_type" {
- type = string
- }
- variable "keyname" {
- type = string
-
- }
|