-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathoutput.tf
52 lines (43 loc) · 1.17 KB
/
output.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
output "eks_cluster_name" {
description = "Name of the EKS Cluster"
value = local.cluster_name
}
output "vault_url" {
description = "Url of the Vault Cluster"
value = "vault.${var.RESOURCE_PREFIX}.local"
}
output "vault_s3_bucket" {
description = "Name of the S3 bucket for vault"
value = "s3://${var.RESOURCE_PREFIX}-vault/vault/vault_secret.json"
}
output "aws_region" {
description = "Region in which resources were deployed"
value = var.AWS_REGION
}
output "vpc_id" {
description = "vpc id"
value = module.vpc.vpc_id
}
output "allow_all_sg" {
description = "allow all traffic sg id"
value = module.vpc.allow_all_sg
}
output "private_subnet_ids" {
description = "subnet ids"
value = module.vpc.private_subnets
}
output "public_subnet_ids" {
description = "subnet ids"
value = module.vpc.public_subnets
}
output "route_53_zone_id" {
value = module.vpc.route_53_zone_id
}
output "eks_has_public_access" {
description = "Expose if EKS has public access"
value = var.ADD_EKS_PUBLIC_ACCESS
}
output "has_fluxcd" {
description = "If EKS has services deployed"
value = var.ADD_FLUXCD
}