variables.tf 457 B

1234567891011121314151617181920212223242526
  1. variable "profile" {
  2. description = "The AWS profile to use"
  3. }
  4. variable "region" {
  5. description = "The AWS region to run in"
  6. }
  7. variable "common-tags" {
  8. type = map(string)
  9. description = "Tags that go everywhere"
  10. }
  11. variable "open-nets" {
  12. type = list
  13. description = "CIDRs that will have access to everything"
  14. }
  15. variable "vpc-cidr" {
  16. description = "The CIDR of the VPC"
  17. }
  18. variable "vpc-id" {
  19. description = "The ID of the VPC"
  20. }