12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- # Several of these security groups will have customer IPs listed in them to allow
- # POP systems to access our services.
- #
- locals {
- # Qualys known CIDRs for scanners to call back to home
- # (in lieu of using the proxy at least for now)
- qualys_mgmt_cidrs = [
- "64.39.96.0/24"
- ]
- }
- module "qualys_scanner_sg" {
- use_name_prefix = false
- source = "terraform-aws-modules/security-group/aws"
- version = "~> 3"
- name = "qualys-scanner"
- tags = merge(var.standard_tags, var.tags)
- vpc_id = var.vpc_id
- egress_with_cidr_blocks = [
- #{
- # from_port = 443
- # to_port = 443
- # protocol = "TCP"
- # description = "Qualys Management Plane"
- # cidr_blocks = join(",",local.qualys_mgmt_cidrs)
- #},
- {
- from_port = -1
- to_port = -1
- protocol = "ALL"
- description = "Outbound for scanning things"
- cidr_blocks = "10.0.0.0/8"
- }
- ]
- ingress_with_cidr_blocks = [
- {
- from_port = -1
- to_port = -1
- protocol = "ICMP"
- description = "Permit all ICMP"
- cidr_blocks = "10.0.0.0/8"
- }
- ]
- }
|