-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
main.tf
86 lines (71 loc) · 2.21 KB
/
main.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
locals {
metadata = {
package = "terraform-aws-vpc-connectivity"
version = trimspace(file("${path.module}/../../VERSION"))
module = basename(path.module)
name = var.name
}
module_tags = var.module_tags_enabled ? {
"module.terraform.io/package" = local.metadata.package
"module.terraform.io/version" = local.metadata.version
"module.terraform.io/name" = local.metadata.module
"module.terraform.io/full-name" = "${local.metadata.package}/${local.metadata.module}"
"module.terraform.io/instance" = local.metadata.name
} : {}
}
locals {
ip_address_types = {
"IPv4" = "ipv4"
"IPv6" = "ipv6"
}
}
###################################################
# Endpoint Service
###################################################
# INFO: Use a separate resource
# - `allowed_principals`
resource "aws_vpc_endpoint_service" "this" {
gateway_load_balancer_arns = (var.type == "GWLB"
? var.load_balancers
: null
)
network_load_balancer_arns = (var.type == "NLB"
? var.load_balancers
: null
)
private_dns_name = var.private_domain
acceptance_required = var.acceptance_required
supported_ip_address_types = [
for ip_address_type in var.supported_ip_address_types :
local.ip_address_types[ip_address_type]
]
tags = merge(
{
"Name" = local.metadata.name
},
local.module_tags,
var.tags,
)
}
###################################################
# Allowed Principals
###################################################
resource "aws_vpc_endpoint_service_allowed_principal" "this" {
for_each = toset(var.allowed_principals)
vpc_endpoint_service_id = aws_vpc_endpoint_service.this.id
principal_arn = each.value
}
###################################################
# Connection Notifications
###################################################
# INFO: Not supported attributes
# - `vpc_endpoint_id`
resource "aws_vpc_endpoint_connection_notification" "this" {
for_each = {
for config in var.connection_notifications :
config.name => config
}
vpc_endpoint_service_id = aws_vpc_endpoint_service.this.id
connection_notification_arn = each.value.sns_topic
connection_events = each.value.events
}