21855: Update URL path for RPMs
[arvados.git] / tools / salt-install / terraform / aws / vpc / outputs.tf
1 # Copyright (C) The Arvados Authors. All rights reserved.
2 #
3 # SPDX-License-Identifier: CC-BY-SA-3.0
4
5 output "arvados_vpc_id" {
6   value = local.arvados_vpc_id
7 }
8 output "arvados_vpc_cidr" {
9   value = try(local.arvados_vpc_cidr_block, "")
10 }
11
12 output "public_subnet_id" {
13   value = local.public_subnet_id
14 }
15
16 output "private_subnet_id" {
17   value = local.private_subnet_id
18 }
19
20 output "arvados_sg_id" {
21   value = local.arvados_sg_id
22 }
23
24 output "additional_rds_subnet_id" {
25   value = local.use_rds ? local.additional_rds_subnet_id : ""
26 }
27
28 output "eip_id" {
29   value = { for k, v in aws_eip.arvados_eip: k => v.id }
30 }
31
32 output "public_ip" {
33   value = local.public_ip
34 }
35
36 output "public_hosts" {
37   value = local.public_hosts
38 }
39
40 output "private_ip" {
41   value = local.private_ip
42 }
43
44 output "private_hosts" {
45   value = local.private_hosts
46 }
47
48 output "user_facing_hosts" {
49   value = var.user_facing_hosts
50 }
51
52 output "internal_service_hosts" {
53   value = var.internal_service_hosts
54 }
55
56 output "private_only" {
57   value = var.private_only
58 }
59
60 output "route53_dns_ns" {
61   value = try(local.route53_public_zone.name_servers, [])
62 }
63
64 output "letsencrypt_iam_access_key_id" {
65   value = try(local.iam_access_key_letsencrypt.id, "")
66   sensitive = true
67 }
68
69 output "letsencrypt_iam_secret_access_key" {
70   value = try(local.iam_access_key_letsencrypt.secret, "")
71   sensitive = true
72 }
73
74 output "region_name" {
75   value = var.region_name
76 }
77
78 output "cluster_name" {
79   value = var.cluster_name
80 }
81
82 output "domain_name" {
83   value = var.domain_name
84 }
85
86 output "custom_tags" {
87   value = var.custom_tags
88 }
89
90 output "use_rds" {
91   value = var.use_rds
92 }