summaryrefslogtreecommitdiff
path: root/org-buetow-base/outputs.tf
blob: 7a8df70ba09723feab903d67dd86c2911b52a323 (plain)
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
output "self_hosted_services_efs_id" {
  value = aws_efs_file_system.self_hosted_services_efs.id
}

output "vpc_id" {
  value = aws_vpc.vpc.id
}

output "public_subnet_a_id" {
  value = aws_subnet.public_subnet_a.id
}

output "public_subnet_b_id" {
  value = aws_subnet.public_subnet_b.id
}

output "public_subnet_c_id" {
  value = aws_subnet.public_subnet_c.id
}

output "allow_ssh_sg_id" {
  value = aws_security_group.allow_ssh.id
}

output "allow_web_sg_id" {
  value = aws_security_group.allow_web.id
}

output "allow_outbound_sg_id" {
  value = aws_security_group.allow_outbound.id
}

output "buetow_cloud_zone_id" {
  value = data.aws_route53_zone.buetow_cloud.zone_id
}

#output "buetow_internal_zone_id" {
#  value = aws_route53_zone.buetow_internal.zone_id
#}

output "buetow_cloud_certificate_arn" {
  value = "arn:aws:acm:eu-central-1:634617747016:certificate/fbf5627c-9a4c-4c62-9c33-038e140f3f12"
}