variables.tf 568 B

123456789101112131415161718192021222324252627
  1. variable "region" {
  2. description = "The Amazon region to run in"
  3. }
  4. variable "profile" {
  5. description = "The Amazon profile to run in"
  6. }
  7. variable "vpc-name" {
  8. description = "The name of the VPC to create"
  9. }
  10. variable "vpc-cidr" {
  11. description = "The CIDR to run the VPC"
  12. }
  13. variable "vpc-azs" {
  14. type = list
  15. description = "The name of the VPC to create"
  16. }
  17. variable "open-nets" {
  18. type = list
  19. description = "Networks that will have full access"
  20. }
  21. variable "common-tags" {
  22. type = map(string)
  23. description = "Tags that go everywhere"
  24. }