vars.tf 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. variable "create_preauthorized_scanner" {
  2. description = "Flag for creating pre-authed scanner instance"
  3. type = bool
  4. default = true
  5. }
  6. variable "create_standard_scanner" {
  7. description = "Flag for creating standard scanner instance"
  8. type = bool
  9. default = true
  10. }
  11. variable "personalization_codes" {
  12. description = "Magic values from qualys authorizing the scanners"
  13. type = map
  14. default = { }
  15. }
  16. variable "subnets" {
  17. type = list(string)
  18. }
  19. variable "vpc_id" {
  20. type = string
  21. }
  22. variable "proxy" {
  23. type = string
  24. default = ""
  25. }
  26. variable "tags" {
  27. description = "Tags to add to the resource (in addition to global standard tags)"
  28. type = map
  29. default = { }
  30. }
  31. variable "reverse_enabled" {
  32. description = "Whether to create the reverse DNS entry."
  33. type = bool
  34. default = true
  35. }
  36. variable "dns_info" { type = map }
  37. variable "standard_tags" { type = map }
  38. variable "environment" { type = string }
  39. variable "aws_region" { type = string }
  40. variable "aws_partition" { type = string }