vars.tf 552 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. variable "cidr" {
  2. type = string
  3. default = "10.0.0.0/16"
  4. }
  5. variable "vpc_name" {
  6. type = string
  7. default = "web_vpc"
  8. }
  9. variable "subnet1_cidr" {
  10. type = string
  11. default = "10.0.1.0/24"
  12. }
  13. variable "subnet2_cidr" {
  14. type = string
  15. default = "10.0.2.0/24"
  16. }
  17. variable "subnet3_cidr" {
  18. type = string
  19. default = "10.0.2.0/24"
  20. }
  21. variable "subnet4_cidr" {
  22. type = string
  23. default = "10.0.2.0/24"
  24. }
  25. variable "ami" {
  26. type = string
  27. }
  28. variable "instance_type" {
  29. type = string
  30. }
  31. variable "keyname" {
  32. type = string
  33. }