-
Notifications
You must be signed in to change notification settings - Fork 19
/
outputs.tf
91 lines (73 loc) · 2.02 KB
/
outputs.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
87
88
89
90
91
output "bucket_name" {
value = local.bucket_name
}
output "bucket_path" {
value = var.bucket_path
}
output "bucket_queue_name" {
value = local.bucket_queue_name
}
output "bucket_region" {
value = data.aws_s3_bucket.file_storage.region
}
output "cluster_name" {
value = module.app_eks.cluster_name
}
output "cluster_node_role" {
value = module.app_eks.node_role
}
output "database_connection_string" {
value = module.database.connection_string
}
output "database_username" {
value = module.database.username
}
output "database_password" {
sensitive = true
value = module.database.password
}
output "database_instance_type" {
value = local.database_instance_class
}
output "elasticache_connection_string" {
value = var.create_elasticache ? module.redis[0].connection_string : null
}
output "eks_min_nodes_per_az" {
value = local.kubernetes_min_nodes_per_az
}
output "eks_max_nodes_per_az" {
value = local.kubernetes_max_nodes_per_az
}
output "eks_node_instance_type" {
value = local.kubernetes_instance_types
}
output "kms_key_arn" {
value = local.default_kms_key
description = "The Amazon Resource Name of the KMS key used to encrypt data at rest."
}
output "kms_clickhouse_key_arn" {
value = local.clickhouse_kms_key
description = "The Amazon Resource Name of the KMS key used to encrypt Weave data at rest in Clickhouse."
}
output "network_id" {
value = local.network_id
description = "The identity of the VPC in which resources are deployed."
}
output "network_private_subnets" {
value = local.network_private_subnets
description = "The identities of the private subnetworks deployed within the VPC."
}
output "network_public_subnets" {
value = var.allowed_inbound_cidr
description = "The identities of the public subnetworks deployed within the VPC."
}
output "redis_instance_type" {
value = local.elasticache_node_type
}
output "standardized_size" {
value = var.size
}
output "url" {
value = local.url
description = "The URL to the W&B application"
}