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