vars.tf 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. variable "cidr" {
  2. description = "The CIDR Block for the VPC"
  3. type = string
  4. }
  5. variable "name" {
  6. description = "The name for the VPC"
  7. type = string
  8. }
  9. variable "tags" {
  10. description = "Tags to add to the resource (in addition to global standard tags)"
  11. type = map
  12. default = { }
  13. }
  14. variable "create_preauthorized_scanner" {
  15. description = "Flag for creating pre-authed scanner instance"
  16. type = bool
  17. default = true
  18. }
  19. variable "create_standard_scanner" {
  20. description = "Flag for creating standard scanner instance"
  21. type = bool
  22. default = true
  23. }
  24. variable "personalization_codes" {
  25. description = "Magic values from qualys authorizing the scanners"
  26. type = map
  27. default = { }
  28. }
  29. # ----------------------------------
  30. # Below this line are variables inherited from higher levels, so they
  31. # do not need to be explicitly passed to this module.
  32. variable "standard_tags" { type = map }
  33. variable "dns_info" { type = map }
  34. variable "aws_region" { type = string }
  35. variable "aws_partition" { type = string }
  36. variable "aws_account_id" { type = string }