-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathdata.tf
50 lines (42 loc) · 1.05 KB
/
data.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
data "vault_aws_access_credentials" "creds" {
backend = "aws"
role = "terraform-user"
}
data "aws_vpc_peering_connection" "hub_dmz" {
depends_on = [aws_vpc_peering_connection.hub_dmz]
vpc_id = aws_vpc.hub.id
peer_vpc_id = aws_vpc.dmz.id
status = "active"
}
data "aws_vpc_peering_connection" "hub_app" {
depends_on = [aws_vpc_peering_connection.hub_app]
vpc_id = aws_vpc.hub.id
peer_vpc_id = aws_vpc.app.id
status = "active"
}
data "aws_vpc_peering_connection" "hub_db" {
depends_on = [aws_vpc_peering_connection.hub_db]
vpc_id = aws_vpc.hub.id
peer_vpc_id = aws_vpc.db.id
status = "active"
}
data "aws_ami" "pfsense" {
most_recent = true
name_regex = "pfSense-plus-ec2-23.05-RELEASE-amd64"
owners = ["aws-marketplace"]
filter {
name = "boot-mode"
values = ["uefi"]
}
filter {
name = "root-device-type"
values = ["ebs"]
}
filter {
name = "virtualization-type"
values = ["hvm"]
}
}
data "aws_availability_zones" "default" {
state = "available"
}