variables.tf 879 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. variable "vpc-name" {
  2. description = "The name of the VPC eg: maguetest"
  3. }
  4. variable "profile" {
  5. description = "The AWS profile to use"
  6. }
  7. variable "region" {
  8. description = "The AWS region to run in"
  9. }
  10. variable "vpc-cidr" {
  11. description = "The network CIDR to use for the VPC"
  12. }
  13. variable "enable-vpc-dns" {
  14. description = "Enable vpc dns"
  15. default = true
  16. }
  17. variable "map-public-ip-on-launch" {
  18. description = "Specify true to indicate that instances launched into the subnet should be assigned a public IP address."
  19. default = "false"
  20. }
  21. variable "vpc-azs" {
  22. type = list(string)
  23. description = "The list of approved azs eg: ['us-west-1a', 'us-west-1c']"
  24. }
  25. variable "common-tags" {
  26. type = map(string)
  27. description = "Tags that go everywhere"
  28. }
  29. variable "enable-private" {
  30. description = "Enable Private Networks"
  31. default = true
  32. }