fix insecure cidr_blocks in load test
This commit is contained in:
parent
4b5919f95a
commit
bc5f13e331
|
@ -37,9 +37,9 @@ module "consul_servers" {
|
|||
|
||||
vpc_id = module.vpc.vpc_id
|
||||
subnet_ids = module.vpc.public_subnets
|
||||
allowed_ssh_cidr_blocks = ["0.0.0.0/0"]
|
||||
allowed_ssh_cidr_blocks = ["10.0.0.0/16"]
|
||||
|
||||
allowed_inbound_cidr_blocks = ["0.0.0.0/0"]
|
||||
allowed_inbound_cidr_blocks = ["10.0.0.0/16"]
|
||||
ssh_key_name = module.keys.key_name
|
||||
|
||||
}
|
||||
|
@ -57,9 +57,9 @@ module "consul_clients" {
|
|||
|
||||
vpc_id = module.vpc.vpc_id
|
||||
subnet_ids = module.vpc.public_subnets
|
||||
allowed_ssh_cidr_blocks = ["0.0.0.0/0"]
|
||||
allowed_ssh_cidr_blocks = ["10.0.0.0/16"]
|
||||
|
||||
allowed_inbound_cidr_blocks = ["0.0.0.0/0"]
|
||||
allowed_inbound_cidr_blocks = ["10.0.0.0/16"]
|
||||
ssh_key_name = module.keys.key_name
|
||||
}
|
||||
|
||||
|
|
|
@ -31,19 +31,19 @@ resource "aws_security_group" "test-servers" {
|
|||
to_port = 8500
|
||||
security_groups = [module.consul_clients.security_group_id]
|
||||
protocol = "6"
|
||||
cidr_blocks = ["0.0.0.0/0"]
|
||||
cidr_blocks = ["10.0.0.0/16"]
|
||||
}
|
||||
ingress {
|
||||
from_port = 22
|
||||
to_port = 22
|
||||
protocol = "6"
|
||||
cidr_blocks = ["0.0.0.0/0"]
|
||||
cidr_blocks = ["10.0.0.0/16"]
|
||||
}
|
||||
egress {
|
||||
from_port = 0
|
||||
to_port = 0
|
||||
protocol = "-1"
|
||||
cidr_blocks = ["0.0.0.0/0"]
|
||||
cidr_blocks = ["10.0.0.0/16"]
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue