20259: Add documentation for banner and tooltip features
[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 = aws_vpc.arvados_vpc.id
7 }
8 output "arvados_vpc_cidr" {
9   value = aws_vpc.arvados_vpc.cidr_block
10 }
11
12 output "arvados_subnet_id" {
13   value = aws_subnet.arvados_subnet.id
14 }
15
16 output "compute_subnet_id" {
17   value = aws_subnet.compute_subnet.id
18 }
19
20 output "arvados_sg_id" {
21   value = aws_security_group.arvados_sg.id
22 }
23
24 output "eip_id" {
25   value = { for k, v in aws_eip.arvados_eip: k => v.id }
26 }
27
28 output "public_ip" {
29   value = local.public_ip
30 }
31
32 output "private_ip" {
33   value = local.private_ip
34 }
35
36 output "route53_dns_ns" {
37   value = aws_route53_zone.public_zone.name_servers
38 }
39
40 output "letsencrypt_iam_access_key_id" {
41   value = aws_iam_access_key.letsencrypt.id
42 }
43
44 output "letsencrypt_iam_secret_access_key" {
45   value = aws_iam_access_key.letsencrypt.secret
46   sensitive = true
47 }
48
49 output "region_name" {
50   value = var.region_name
51 }
52
53 output "cluster_name" {
54   value = var.cluster_name
55 }
56
57 output "domain_name" {
58   value = var.domain_name
59 }