-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathvpc.tf
71 lines (54 loc) · 1.3 KB
/
vpc.tf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
module "vpc" {
source = "terraform-aws-modules/vpc/aws"
name = "${var.namespace}-${var.environment}"
cidr = "${var.vpc_cidr_two_octets}.0.0/16"
azs = var.vpc_azs
private_subnets = [
"${var.vpc_cidr_two_octets}.1.0/24",
]
public_subnets = [
"${var.vpc_cidr_two_octets}.101.0/24",
]
enable_nat_gateway = false
# These tags apply to all resources
tags = {
"Terraform" = "true"
"Environment" = var.environment
}
}
resource "aws_security_group" "vpc_default" {
name = "${var.namespace}-${var.environment}-vpc-default"
description = "Public traffic for VPN"
vpc_id = module.vpc.vpc_id
lifecycle {
create_before_destroy = true
}
ingress {
self = true
from_port = 0
to_port = 0
protocol = "-1"
}
ingress {
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["${var.vpc_cidr_two_octets}.0.0/16", var.client_pub_ip]
}
egress {
from_port = 0
to_port = 0
protocol = "-1"
cidr_blocks = ["0.0.0.0/0"]
}
tags = {
"Terraform" = "true"
"Environment" = var.environment
"Name" = "${var.namespace}-${var.environment}-vpc-default"
}
}
resource "aws_eip" "vpn_instance_eip" {
vpc = true
#instance = "${aws_instance.vpn_instance.id}"
depends_on = [module.vpc]
}